diff --git a/README.md b/README.md index 5fe0e587e..03b217bd9 100644 --- a/README.md +++ b/README.md @@ -19,11 +19,11 @@ A convenient modular engine for Microservices. Microserver plugins offer seamles Install Microserver with Grizzly, Jackson and Jersey (Gradle config below) ```groovy - compile group: 'com.aol.microservices', name:'micro-grizzly-with-jersey', version:'x.yz' + compile group: 'com.oath.microservices', name:'micro-grizzly-with-jersey', version:'x.yz' ``` Install Microserver with Tomcat, Jackson and Jersey (Gradle config below) ```groovy - compile group: 'com.aol.microservices', name:'micro-tomcat-with-jersey', version:'x.yz' + compile group: 'com.oath.microservices', name:'micro-tomcat-with-jersey', version:'x.yz' ``` Create and run a simple app ```java @@ -114,15 +114,15 @@ Microserver is a zero configuration, standards based, battle hardened library to ![Build health](https://travis-ci.org/aol/micro-server.svg) * micro-grizzly-with-jersey -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-grizzly-with-jersey/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-grizzly-with-jersey) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-grizzly-with-jersey/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-grizzly-with-jersey) * micro-tomcat-with-jersey -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-tomcat-with-jersey/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-tomcat-with-jersey) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-tomcat-with-jersey/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-tomcat-with-jersey) * micro-core -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-core/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-core) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-core/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-core) * micro-boot : Microserver driving Spring Boot -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-boot/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-boot) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-boot/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-boot) * micro-spring-boot : Spring Boot driving Microserver -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-spring-boot/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-spring-boot) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-spring-boot/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-spring-boot) ##Info @@ -135,9 +135,9 @@ Microserver is a zero configuration, standards based, battle hardened library to [Example Apps : Microserver Boot](https://github.com/aol/micro-server/tree/master/micro-boot/src/test/java/app) -[Java Doc : Microserver Core](http://www.javadoc.io/doc/com.aol.microservices/micro-core/0.62) +[Java Doc : Microserver Core](http://www.javadoc.io/doc/com.oath.microservices/micro-core/0.62) -[Java Doc : Microserver Boot](http://www.javadoc.io/doc/com.aol.microservices/micro-core/0.62) +[Java Doc : Microserver Boot](http://www.javadoc.io/doc/com.oath.microservices/micro-core/0.62) @@ -146,7 +146,7 @@ Microserver is a zero configuration, standards based, battle hardened library to Microserver Grizzly with Jersey ```xml - com.aol.microservices + com.oath.microservices micro-grizzly-with-jersey x.yz @@ -154,7 +154,7 @@ Microserver Grizzly with Jersey Microserver Spring Boot ```xml - com.aol.microservices + com.oath.microservices micro-spring-boot x.yz @@ -165,11 +165,11 @@ Microserver Spring Boot Microserver core ```groovy - compile group: 'com.aol.microservices', name:'micro-core', version:'x.yz' + compile group: 'com.oath.microservices', name:'micro-core', version:'x.yz' ``` Microserver Spring Boot ```groovy - compile group: 'com.aol.microservices', name:'micro-spring-boot', version:'x.yz' + compile group: 'com.oath.microservices', name:'micro-spring-boot', version:'x.yz' ``` ## Tech Stack diff --git a/gradle.properties b/gradle.properties index f9c766dae..5f64bed9a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -version=0.91.10 +version=1.0.0 springVersion=4.3.3.RELEASE springBootVersion=1.4.1.RELEASE jerseyVersion=2.24 diff --git a/micro-application-register/README.md b/micro-application-register/README.md index c31822e46..7338468b0 100644 --- a/micro-application-register/README.md +++ b/micro-application-register/README.md @@ -6,21 +6,21 @@ This plugin turns any service into a Service Registry client (and optionally ser ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-application-register/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-application-register) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-application-register/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-application-register) Simply add this plugin to the classpath on your Microserver app. Maven ```xml - com.aol.microservices + com.oath.microservices micro-application-registry x.yz ``` Gradle ```groovy - compile 'com.aol.microservices:micro-application-registry:x.yz' + compile 'com.oath.microservices:micro-application-registry:x.yz' ``` ## Depends on diff --git a/micro-application-register/build.gradle b/micro-application-register/build.gradle index 7c57c502d..acc81d97c 100644 --- a/micro-application-register/build.gradle +++ b/micro-application-register/build.gradle @@ -16,7 +16,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-application-register' version "$version" diff --git a/micro-async-data-loader/README.md b/micro-async-data-loader/README.md index 365de8b2b..0e8a034f5 100644 --- a/micro-async-data-loader/README.md +++ b/micro-async-data-loader/README.md @@ -114,17 +114,17 @@ Simply inject your ManifestComparator Bean into the service that needs the data ## Getting The Microserver Async Data Loader Plugin -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-async-data-loader/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-async-data-loader) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-async-data-loader/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-async-data-loader) ### Maven ```xml - com.aol.microservices + com.oath.microservices micro-async-data-loader x.yz ``` ### Gradle ```groovy - compile 'com.aol.microservices:micro-async-data-loader:x.yz' + compile 'com.oath.microservices:micro-async-data-loader:x.yz' ``` diff --git a/micro-async-data-loader/build.gradle b/micro-async-data-loader/build.gradle index ee4f84f0d..edaaaa4b7 100644 --- a/micro-async-data-loader/build.gradle +++ b/micro-async-data-loader/build.gradle @@ -21,7 +21,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2016' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-async-data-loader' version "$version" diff --git a/micro-async-data-writer/README.md b/micro-async-data-writer/README.md index 072e84a3a..225665faa 100644 --- a/micro-async-data-writer/README.md +++ b/micro-async-data-writer/README.md @@ -119,17 +119,17 @@ public class TurnOff implements ConditionallyClean { ## Getting The Microserver Async Data Writer Plugin -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-async-data-writer/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-async-data-writer) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-async-data-writer/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-async-data-writer) ### Maven ```xml - com.aol.microservices + com.oath.microservices micro-async-data-writer x.yz ``` ### Gradle ```groovy - compile 'com.aol.microservices:micro-async-data-writer:x.yz' + compile 'com.oath.microservices:micro-async-data-writer:x.yz' ``` diff --git a/micro-async-data-writer/build.gradle b/micro-async-data-writer/build.gradle index 87bc6bb18..b73fd425e 100644 --- a/micro-async-data-writer/build.gradle +++ b/micro-async-data-writer/build.gradle @@ -20,7 +20,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2016' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-async-data-writer' version "$version" diff --git a/micro-boot/README.md b/micro-boot/README.md index bb583eafc..dace93a8c 100644 --- a/micro-boot/README.md +++ b/micro-boot/README.md @@ -52,35 +52,35 @@ public class SimpleResource{ ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-boot/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-boot) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-boot/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-boot) Add micro-boot to the classpath Maven - com.aol.microservices + com.oath.microservices micro-boot x.yz Gradle - compile 'com.aol.microservices:micro-boot:x.yz' + compile 'com.oath.microservices:micro-boot:x.yz' And also add Grizzly and Jersey (micro-grizzly-with-jersey will add both) Maven - com.aol.microservices + com.oath.microservices micro-grizzly-with-jersey x.yz Gradle - compile 'com.aol.microservices:micro-grizzly-with-jersey:x.yz' + compile 'com.oath.microservices:micro-grizzly-with-jersey:x.yz' ## Create a simple server diff --git a/micro-boot/build.gradle b/micro-boot/build.gradle index f0ffd8942..29a9dd833 100644 --- a/micro-boot/build.gradle +++ b/micro-boot/build.gradle @@ -22,7 +22,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-boot' version "$version" diff --git a/micro-client/README.md b/micro-client/README.md index 32ed22744..c38a9b6cf 100644 --- a/micro-client/README.md +++ b/micro-client/README.md @@ -126,18 +126,18 @@ The connection timeout for the underlying HttpClient in millis. A timeout value ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-client/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-client) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-client/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-client) Simply add to the classpath Maven - com.aol.microservices + com.oath.microservices micro-client x.yz Gradle - compile 'com.aol.microservices:micro-client:x.yz' + compile 'com.oath.microservices:micro-client:x.yz' diff --git a/micro-client/build.gradle b/micro-client/build.gradle index bd39f38ac..1760dd6a8 100644 --- a/micro-client/build.gradle +++ b/micro-client/build.gradle @@ -20,7 +20,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-client' version "$version" diff --git a/micro-core/README.md b/micro-core/README.md index c61f91991..bbcf73d5f 100644 --- a/micro-core/README.md +++ b/micro-core/README.md @@ -5,18 +5,18 @@ This module imports your configured plugins, starts and manages your JEE webserv ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-core/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-core) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-core/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-core) Simply add to the classpath Maven - com.aol.microservices + com.oath.microservices micro-core x.yz Gradle - compile 'com.aol.microservices:micro-core:x.yz' \ No newline at end of file + compile 'com.oath.microservices:micro-core:x.yz' diff --git a/micro-core/build.gradle b/micro-core/build.gradle index 73d44e19d..d9825f9d0 100644 --- a/micro-core/build.gradle +++ b/micro-core/build.gradle @@ -36,7 +36,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-core' version "$version" diff --git a/micro-cors/README.md b/micro-cors/README.md index fad7f8d10..bcf9cfabd 100644 --- a/micro-cors/README.md +++ b/micro-cors/README.md @@ -27,18 +27,18 @@ The Ebay CORS Filter offers much more configuration options [https://github.com ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-cors/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-cors) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-cors/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-cors) Simply add to the classpath Maven - com.aol.microservices + com.oath.microservices micro-cors x.yz Gradle - compile 'com.aol.microservices:micro-cors:x.yz' + compile 'com.oath.microservices:micro-cors:x.yz' diff --git a/micro-cors/build.gradle b/micro-cors/build.gradle index c0689c6a1..d486bdfc3 100644 --- a/micro-cors/build.gradle +++ b/micro-cors/build.gradle @@ -14,7 +14,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-cors' version "$version" diff --git a/micro-couchbase/README.md b/micro-couchbase/README.md index 62c435e2c..9508a84e7 100644 --- a/micro-couchbase/README.md +++ b/micro-couchbase/README.md @@ -166,17 +166,17 @@ couchbaseClientOperationTimeout:120000 ## Getting The Microserver Couchbase Plugin -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-couchbase/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-couchbase) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-couchbase/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-couchbase) ### Maven ```xml - com.aol.microservices + com.oath.microservices micro-couchbase x.yz ``` ### Gradle ```groovy - compile 'com.aol.microservices:micro-couchbase:x.yz' + compile 'com.oath.microservices:micro-couchbase:x.yz' ``` diff --git a/micro-couchbase/build.gradle b/micro-couchbase/build.gradle index d29ff2455..6f071f952 100644 --- a/micro-couchbase/build.gradle +++ b/micro-couchbase/build.gradle @@ -44,7 +44,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-couchbase' version "$version" diff --git a/micro-curator/README.md b/micro-curator/README.md index 9481eab90..c9b9e23f4 100644 --- a/micro-curator/README.md +++ b/micro-curator/README.md @@ -6,21 +6,21 @@ This adds a facility to use curator locks. ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-curator/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-curator) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-curator/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-curator) Simply add to the classpath Maven ```xml - com.aol.microservices + com.oath.microservices micro-curator x.yz ``` Gradle ```groovy - compile 'com.aol.microservices:micro-curator:x.yz' + compile 'com.oath.microservices:micro-curator:x.yz' ``` ## Example api for taking lock diff --git a/micro-curator/build.gradle b/micro-curator/build.gradle index ebd86d3a6..9dc97a953 100644 --- a/micro-curator/build.gradle +++ b/micro-curator/build.gradle @@ -40,7 +40,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-curator' version "$version" diff --git a/micro-dbcp/README.md b/micro-dbcp/README.md index 5cc573ee5..012c0afae 100644 --- a/micro-dbcp/README.md +++ b/micro-dbcp/README.md @@ -7,21 +7,21 @@ Creates a DataSource Spring Bean with name "mainDataSource". This will be based ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-dbcp/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-dbcp) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-dbcp/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-dbcp) Simply add to the classpath Maven - com.aol.microservices + com.oath.microservices micro-dbcp x.yz Gradle - compile 'com.aol.microservices:micro-dbcp:x.yz' + compile 'com.oath.microservices:micro-dbcp:x.yz' # Configuring a data source diff --git a/micro-dbcp/build.gradle b/micro-dbcp/build.gradle index 4984ee4f3..5c7369b8a 100644 --- a/micro-dbcp/build.gradle +++ b/micro-dbcp/build.gradle @@ -17,7 +17,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-dbcp' version "$version" diff --git a/micro-dist-lock/README.md b/micro-dist-lock/README.md index 449decb8d..466df7749 100644 --- a/micro-dist-lock/README.md +++ b/micro-dist-lock/README.md @@ -39,17 +39,17 @@ This plugin also provides a rest end point which can be used to check if a proce ## Getting The Microserver Distributed Lock Plugin -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-dist-lock/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-dist-lock) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-dist-lock/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-dist-lock) ### Maven ```xml - com.aol.microservices + com.oath.microservices micro-dist-lock x.yz ``` ### Gradle ```groovy - compile 'com.aol.microservices:micro-dist-lock:x.yz' -``` \ No newline at end of file + compile 'com.oath.microservices:micro-dist-lock:x.yz' +``` diff --git a/micro-dist-lock/build.gradle b/micro-dist-lock/build.gradle index d990e3417..3422443db 100644 --- a/micro-dist-lock/build.gradle +++ b/micro-dist-lock/build.gradle @@ -14,7 +14,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-dist-lock' version "$version" diff --git a/micro-elasticache/README.md b/micro-elasticache/README.md index 7969bad9a..97f3b5e8b 100644 --- a/micro-elasticache/README.md +++ b/micro-elasticache/README.md @@ -23,12 +23,12 @@ elasticache.max.retries is the maximum number of retries before client throws er ### Maven ```xml - com.aol.microservices + com.oath.microservices micro-elasticache x.yz ``` ### Gradle ```groovy - compile 'com.aol.microservices:micro-elasticache:x.yz' + compile 'com.oath.microservices:micro-elasticache:x.yz' ``` diff --git a/micro-elasticache/build.gradle b/micro-elasticache/build.gradle index 3100eb096..9858cd9ab 100644 --- a/micro-elasticache/build.gradle +++ b/micro-elasticache/build.gradle @@ -41,7 +41,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-elasticache' version "$version" diff --git a/micro-error-codes/README.md b/micro-error-codes/README.md index bd88791a0..0cbf1532f 100644 --- a/micro-error-codes/README.md +++ b/micro-error-codes/README.md @@ -103,17 +103,17 @@ try{ ## Getting The Microserver Error Codes -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-error-codes/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-error-codes) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-error-codes/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-error-codes) ### Maven ```xml - com.aol.microservices + com.oath.microservices micro-error-codes x.yz ``` ### Gradle ```groovy - compile 'com.aol.microservices:micro-error-codes:x.yz' + compile 'com.oath.microservices:micro-error-codes:x.yz' ``` diff --git a/micro-error-codes/build.gradle b/micro-error-codes/build.gradle index f0c5bfb36..6cebdbe83 100644 --- a/micro-error-codes/build.gradle +++ b/micro-error-codes/build.gradle @@ -13,7 +13,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2016' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-error-codes' version "$version" diff --git a/micro-event-metrics/README.md b/micro-event-metrics/README.md index 41b53693c..2fbe49d37 100644 --- a/micro-event-metrics/README.md +++ b/micro-event-metrics/README.md @@ -7,21 +7,21 @@ Captures Dropwizard metrics based on application events ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-event-metrics/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-event-metrics) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-event-metrics/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-event-metrics) Simply add to the classpath Maven ```xml - com.aol.microservices + com.oath.microservices micro-event-metrics x.yz ``` Gradle ```groovy - compile 'com.aol.microservices:micro-event-metrics:x.yz' + compile 'com.oath.microservices:micro-event-metrics:x.yz' ``` ### Depends on diff --git a/micro-event-metrics/build.gradle b/micro-event-metrics/build.gradle index becb1e0a8..57a49e442 100644 --- a/micro-event-metrics/build.gradle +++ b/micro-event-metrics/build.gradle @@ -16,7 +16,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2016' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-event-metrics' version "$version" diff --git a/micro-events/README.md b/micro-events/README.md index 164edbf22..4d1460e6b 100644 --- a/micro-events/README.md +++ b/micro-events/README.md @@ -6,21 +6,21 @@ This adds a facility to capture events such as requests, request execution and s ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-events/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-events) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-events/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-events) Simply add to the classpath Maven ```xml - com.aol.microservices + com.oath.microservices micro-events x.yz ``` Gradle ```groovy - compile 'com.aol.microservices:micro-events:x.yz' + compile 'com.oath.microservices:micro-events:x.yz' ``` ### Depends on diff --git a/micro-events/build.gradle b/micro-events/build.gradle index 29b97346f..4bc98e0db 100644 --- a/micro-events/build.gradle +++ b/micro-events/build.gradle @@ -15,7 +15,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-events' version "$version" diff --git a/micro-general-exception-mapper/README.md b/micro-general-exception-mapper/README.md index 7fab6f1c7..f1679b64a 100644 --- a/micro-general-exception-mapper/README.md +++ b/micro-general-exception-mapper/README.md @@ -35,19 +35,19 @@ public class MappingExtension implements ExtensionMapOfExceptionsToErrorCodes { ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-general-exception-mapper/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-general-exception-mapper) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-general-exception-mapper/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-general-exception-mapper) Simply add to the classpath Maven ```xml - com.aol.microservices + com.oath.microservices micro-general-exception-mapper x.yz ``` Gradle ```groovy - compile 'com.aol.microservices:micro-general-exception-mapper:x.yz' + compile 'com.oath.microservices:micro-general-exception-mapper:x.yz' ``` diff --git a/micro-general-exception-mapper/build.gradle b/micro-general-exception-mapper/build.gradle index 240fef986..da30fb0ef 100644 --- a/micro-general-exception-mapper/build.gradle +++ b/micro-general-exception-mapper/build.gradle @@ -15,7 +15,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-general-exception-mapper' version "$version" diff --git a/micro-grizzly-with-jersey/README.md b/micro-grizzly-with-jersey/README.md index 9a0475638..85639341f 100644 --- a/micro-grizzly-with-jersey/README.md +++ b/micro-grizzly-with-jersey/README.md @@ -6,18 +6,18 @@ Convenience module that packages Grizzly, Jersey, Jackson and Microserver togeth ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-grizzly-with-jersey/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-grizzly-with-jersey) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-grizzly-with-jersey/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-grizzly-with-jersey) Simply add to the classpath Maven - com.aol.microservices + com.oath.microservices micro-grizzly-with-jersey x.yz Gradle - compile 'com.aol.microservices:micro-grizzly-with-jersey:x.yz' \ No newline at end of file + compile 'com.oath.microservices:micro-grizzly-with-jersey:x.yz' diff --git a/micro-grizzly-with-jersey/build.gradle b/micro-grizzly-with-jersey/build.gradle index 726b088d1..095224f82 100644 --- a/micro-grizzly-with-jersey/build.gradle +++ b/micro-grizzly-with-jersey/build.gradle @@ -15,7 +15,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-grizzly-with-jersey' version "$version" diff --git a/micro-grizzly/README.md b/micro-grizzly/README.md index 6dcc51d7d..9d7d4dc50 100644 --- a/micro-grizzly/README.md +++ b/micro-grizzly/README.md @@ -7,18 +7,18 @@ Plugin that allows the Grizzly Web server to be used with Microserver. ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-grizzly/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-grizzly) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-grizzly/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-grizzly) Simply add to the classpath Maven - com.aol.microservices + com.oath.microservices micro-grizzly x.yz Gradle - compile 'com.aol.microservices:micro-grizzly:x.yz' \ No newline at end of file + compile 'com.oath.microservices:micro-grizzly:x.yz' diff --git a/micro-grizzly/build.gradle b/micro-grizzly/build.gradle index 26683cd21..feb411281 100644 --- a/micro-grizzly/build.gradle +++ b/micro-grizzly/build.gradle @@ -16,7 +16,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-grizzly' version "$version" diff --git a/micro-guava/README.md b/micro-guava/README.md index b49cfd2e7..5e80d35ea 100644 --- a/micro-guava/README.md +++ b/micro-guava/README.md @@ -11,19 +11,19 @@ This plugin Simply add to the classpath -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-guava/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-guava) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-guava/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-guava) Maven - com.aol.microservices + com.oath.microservices micro-guava x.yz Gradle - compile 'com.aol.microservices:micro-guava:x.yz' + compile 'com.oath.microservices:micro-guava:x.yz' # Example Guava Resource diff --git a/micro-guava/build.gradle b/micro-guava/build.gradle index c8c8b1500..985c761a9 100644 --- a/micro-guava/build.gradle +++ b/micro-guava/build.gradle @@ -17,7 +17,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-guava' version "$version" diff --git a/micro-hibernate/README.md b/micro-hibernate/README.md index 4e7fb6749..426a4e284 100644 --- a/micro-hibernate/README.md +++ b/micro-hibernate/README.md @@ -7,21 +7,21 @@ Adds Spring Data, and Hibernate support. ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-hibernate/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-hibernate) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-hibernate/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-hibernate) Simply add to the classpath Maven - com.aol.microservices + com.oath.microservices micro-hibernate x.yz Gradle - compile 'com.aol.microservices:micro-data:x.yz' + compile 'com.oath.microservices:micro-data:x.yz' # Configuring a data source diff --git a/micro-hibernate/build.gradle b/micro-hibernate/build.gradle index baad32c14..8d01d1eaf 100644 --- a/micro-hibernate/build.gradle +++ b/micro-hibernate/build.gradle @@ -26,7 +26,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-hibernate' version "$version" diff --git a/micro-hikaricp/README.md b/micro-hikaricp/README.md index 0f90c3b49..22e3cd6f9 100644 --- a/micro-hikaricp/README.md +++ b/micro-hikaricp/README.md @@ -7,21 +7,21 @@ Creates a DataSource Spring Bean with name "mainDataSource". This will be based ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-hikaricp/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-hikaricp) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-hikaricp/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-hikaricp) Simply add to the classpath Maven - com.aol.microservices + com.oath.microservices micro-hikaricp x.yz Gradle - compile 'com.aol.microservices:micro-hikaricp:x.yz' + compile 'com.oath.microservices:micro-hikaricp:x.yz' # Configuring a data source diff --git a/micro-hikaricp/build.gradle b/micro-hikaricp/build.gradle index c5a31a7f4..d5c32b9bc 100644 --- a/micro-hikaricp/build.gradle +++ b/micro-hikaricp/build.gradle @@ -17,7 +17,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-hikaricp' version "$version" diff --git a/micro-ip-tracker/README.md b/micro-ip-tracker/README.md index cd76e047a..e0eed401c 100644 --- a/micro-ip-tracker/README.md +++ b/micro-ip-tracker/README.md @@ -31,7 +31,7 @@ By default all incoming requests are tracked, an array of endpoints can be spefi Simply add to the classpath -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-ip-tracker/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-ip-tracker) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-ip-tracker/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-ip-tracker) @@ -39,11 +39,11 @@ Simply add to the classpath ### Maven - com.aol.microservices + com.oath.microservices micro-ip-tracker x.yx ### Gradle - compile 'com.aol.microservices:micro-ip-tracker:x.yz' + compile 'com.oath.microservices:micro-ip-tracker:x.yz' diff --git a/micro-ip-tracker/build.gradle b/micro-ip-tracker/build.gradle index 1e547df9b..597aeebe8 100644 --- a/micro-ip-tracker/build.gradle +++ b/micro-ip-tracker/build.gradle @@ -14,7 +14,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-ip-tracker' version "$version" diff --git a/micro-jackson-configuration/README.md b/micro-jackson-configuration/README.md index e399c7f91..178c49cc3 100644 --- a/micro-jackson-configuration/README.md +++ b/micro-jackson-configuration/README.md @@ -42,19 +42,19 @@ Custom extensions are only guaranteed to be available once the configurations h ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-jackson-configuration/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-jackson-configuration) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-jackson-configuration/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-jackson-configuration) Simply add to the classpath Maven ```xml - com.aol.microservices + com.oath.microservices micro-jackson-configuration x.yz `` Gradle ```groovy - compile 'com.aol.microservices:micro-jackson-configuration:x.yz' + compile 'com.oath.microservices:micro-jackson-configuration:x.yz' ``` diff --git a/micro-jackson-configuration/build.gradle b/micro-jackson-configuration/build.gradle index 732d22101..a86cb13dd 100644 --- a/micro-jackson-configuration/build.gradle +++ b/micro-jackson-configuration/build.gradle @@ -12,7 +12,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-jackson-configuration' version "$version" diff --git a/micro-jdbc/README.md b/micro-jdbc/README.md index f7840cda3..22e55c8c5 100644 --- a/micro-jdbc/README.md +++ b/micro-jdbc/README.md @@ -8,21 +8,21 @@ This plugin needs either micro-hikaricp or micro-dbcp2 plugin at runtime to prov ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-data/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-jdbc) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-data/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-jdbc) Simply add to the classpath Maven - com.aol.microservices + com.oath.microservices micro-jdbc x.yz Gradle - compile 'com.aol.microservices:micro-jdbc:x.yz' + compile 'com.oath.microservices:micro-jdbc:x.yz' # Configuring a data source diff --git a/micro-jdbc/build.gradle b/micro-jdbc/build.gradle index e488e341e..7c7dcd4f6 100644 --- a/micro-jdbc/build.gradle +++ b/micro-jdbc/build.gradle @@ -17,7 +17,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-jdbc' version "$version" diff --git a/micro-jersey/README.md b/micro-jersey/README.md index 6f152c03f..b9ac1871a 100644 --- a/micro-jersey/README.md +++ b/micro-jersey/README.md @@ -6,7 +6,7 @@ Plugin that allows the Jersey to be used as the jax-rs implementation with Micro ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-jersey/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-jersey) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-jersey/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-jersey) Simply add to the classpath @@ -14,7 +14,7 @@ Maven ```xml - com.aol.microservices + com.oath.microservices micro-jersey x.yz @@ -22,7 +22,7 @@ Maven ``` Gradle ```groovy - compile 'com.aol.microservices:micro-jersey:x.yz' + compile 'com.oath.microservices:micro-jersey:x.yz' ``` ## Baked in async NIO based REST @@ -51,4 +51,4 @@ Would be equivalent to the following code return 1; }, Executors.newFixedThreadPool(1)); } -``` \ No newline at end of file +``` diff --git a/micro-jersey/build.gradle b/micro-jersey/build.gradle index 1a5569466..3495903aa 100644 --- a/micro-jersey/build.gradle +++ b/micro-jersey/build.gradle @@ -27,7 +27,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-jersey' version "$version" diff --git a/micro-jmx-metrics/README.md b/micro-jmx-metrics/README.md index 7e0150487..994c0cb3b 100644 --- a/micro-jmx-metrics/README.md +++ b/micro-jmx-metrics/README.md @@ -7,21 +7,21 @@ See also [micro-metrics-datadog](https://github.com/aol/micro-server/tree/master ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-jmx-metrics/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-jmx-metrics) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-jmx-metrics/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-jmx-metrics) Simply add to the classpath Maven ```xml - com.aol.microservices + com.oath.microservices micro-jmx-metrics x.yz ``` Gradle ```groovy - compile 'com.aol.microservices:micro-jmx-metrics:x.yz' + compile 'com.oath.microservices:micro-jmx-metrics:x.yz' ``` Metrics reported by this plugin: diff --git a/micro-jmx-metrics/build.gradle b/micro-jmx-metrics/build.gradle index 9ee293b84..30f6e988b 100644 --- a/micro-jmx-metrics/build.gradle +++ b/micro-jmx-metrics/build.gradle @@ -22,7 +22,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2016' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-jmx-metrics' version "$version" diff --git a/micro-log-streamer/README.md b/micro-log-streamer/README.md index 753a7def1..5e86ebde7 100644 --- a/micro-log-streamer/README.md +++ b/micro-log-streamer/README.md @@ -62,20 +62,20 @@ curl -v http://myhost:8080/my-app/log-tail/stream-file?alias-custom ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-reactive/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-reactive) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-reactive/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-reactive) Simply add to the classpath Maven ```xml - com.aol.microservices + com.oath.microservices micro-log-streamer x.yz ``` Gradle ```groovy - compile 'com.aol.microservices:micro-log-streamer:x.yz' + compile 'com.oath.microservices:micro-log-streamer:x.yz' ``` diff --git a/micro-log-streamer/build.gradle b/micro-log-streamer/build.gradle index 03a6ada31..ac13e107b 100644 --- a/micro-log-streamer/build.gradle +++ b/micro-log-streamer/build.gradle @@ -16,7 +16,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2016' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-log-streamer' version "$version" diff --git a/micro-log4j/README.md b/micro-log4j/README.md index 7a655efb0..7d45d4cfa 100644 --- a/micro-log4j/README.md +++ b/micro-log4j/README.md @@ -9,21 +9,21 @@ micro-log4j plugin can be used in two ways: ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-log4j/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-log4j) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-log4j/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-log4j) Simply add to the classpath Maven ```xml - com.aol.microservices + com.oath.microservices micro-log4j x.yz ``` Gradle ```groovy - compile 'com.aol.microservices:micro-log4j:x.yz' + compile 'com.oath.microservices:micro-log4j:x.yz' ``` # Configuration endpoints @@ -68,4 +68,4 @@ Users can also use Log4jRootLoggerResource to change either log4j.root.logger.ch * /log4j/rootlogger/checker/is/{active} = true | false -* /log4j/rootlogger/checker/level/{correctLevelStr} = all | debug | error | info | warn | fatal | trace \ No newline at end of file +* /log4j/rootlogger/checker/level/{correctLevelStr} = all | debug | error | info | warn | fatal | trace diff --git a/micro-log4j/build.gradle b/micro-log4j/build.gradle index 8b725c2ff..1f8250535 100644 --- a/micro-log4j/build.gradle +++ b/micro-log4j/build.gradle @@ -20,7 +20,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-log4j' version "$version" diff --git a/micro-logback/README.md b/micro-logback/README.md index 18154907b..635c401cd 100644 --- a/micro-logback/README.md +++ b/micro-logback/README.md @@ -10,7 +10,7 @@ micro-logback plugin can be used in two ways: ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-logback/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-logback) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-logback/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-logback) Simply add to the classpath @@ -18,14 +18,14 @@ Maven ```xml - com.aol.microservices + com.oath.microservices micro-logback x.yz ``` Gradle ```groovy - compile 'com.aol.microservices:micro-logback:x.yz' + compile 'com.oath.microservices:micro-logback:x.yz' ``` # Configuration endpoints diff --git a/micro-logback/build.gradle b/micro-logback/build.gradle index 1d37015a1..be3f513f2 100644 --- a/micro-logback/build.gradle +++ b/micro-logback/build.gradle @@ -14,7 +14,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-logback' version "$version" diff --git a/micro-machine-stats/README.md b/micro-machine-stats/README.md index 1187c2b5c..69572aaa3 100644 --- a/micro-machine-stats/README.md +++ b/micro-machine-stats/README.md @@ -12,7 +12,7 @@ Adds a rest end point /stats/machine to view statistics about the current contai # To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-machine-stats/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-machine-stats) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-machine-stats/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-machine-stats) Simply add this plugin to your classpath @@ -20,7 +20,7 @@ Maven ```xml - com.aol.microservices + com.oath.microservices micro-machine-stats x.yz @@ -28,7 +28,7 @@ Maven ``` Gradle ```groovy - compile 'com.aol.microservices:micro-machine-stats:x.yz' + compile 'com.oath.microservices:micro-machine-stats:x.yz' ``` @@ -57,4 +57,4 @@ Gradle "page-out": 312451 } } -``` \ No newline at end of file +``` diff --git a/micro-machine-stats/build.gradle b/micro-machine-stats/build.gradle index 62867d29a..a7e25a312 100644 --- a/micro-machine-stats/build.gradle +++ b/micro-machine-stats/build.gradle @@ -15,7 +15,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-machine-stats' version "$version" diff --git a/micro-manifest-comparator/README.md b/micro-manifest-comparator/README.md index 623f4a5fd..2fc1ecfd8 100644 --- a/micro-manifest-comparator/README.md +++ b/micro-manifest-comparator/README.md @@ -142,17 +142,17 @@ e.g. ## Getting The Microserver Manifest comparator Plugin -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-couchbase/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-couchbase) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-couchbase/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-couchbase) ### Maven ```xml - com.aol.microservices + com.oath.microservices micro-manifest-comparator x.yz ``` ### Gradle ```groovy - compile 'com.aol.microservices:micro-manifest-comparator:x.yz' + compile 'com.oath.microservices:micro-manifest-comparator:x.yz' ``` diff --git a/micro-manifest-comparator/build.gradle b/micro-manifest-comparator/build.gradle index 743531083..affa1683b 100644 --- a/micro-manifest-comparator/build.gradle +++ b/micro-manifest-comparator/build.gradle @@ -25,7 +25,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2016' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-manifest-comparator' version "$version" diff --git a/micro-metrics-datadog/README.md b/micro-metrics-datadog/README.md index 923ccac97..5dd5f3658 100644 --- a/micro-metrics-datadog/README.md +++ b/micro-metrics-datadog/README.md @@ -8,21 +8,21 @@ This plugin in combination with the micro-event-metrics plugin will send some me ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-metrics-datadog/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-metrics-datadog) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-metrics-datadog/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-metrics-datadog) Simply add to the classpath Maven ```xml - com.aol.microservices + com.oath.microservices micro-metrics-datadog x.yz ``` Gradle ```groovy - compile 'com.aol.microservices:micro-metrics-datadog:x.yz' + compile 'com.oath.microservices:micro-metrics-datadog:x.yz' ``` # Configuring datadog metrics Reporters diff --git a/micro-metrics-datadog/build.gradle b/micro-metrics-datadog/build.gradle index 4f7e27032..02603c86a 100644 --- a/micro-metrics-datadog/build.gradle +++ b/micro-metrics-datadog/build.gradle @@ -17,7 +17,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-metrics-datadog' version "$version" diff --git a/micro-metrics/README.md b/micro-metrics/README.md index 6eff4ace5..632f2d3bd 100644 --- a/micro-metrics/README.md +++ b/micro-metrics/README.md @@ -6,21 +6,21 @@ This adds support for Dropwizard metrics annotations on Spring beans. For more d ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-metrics/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-metrics) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-metrics/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-metrics) Simply add to the classpath Maven - com.aol.microservices + com.oath.microservices micro-metrics x.yz Gradle - compile 'com.aol.microservices:micro-metrics:x.yz' + compile 'com.oath.microservices:micro-metrics:x.yz' # Configuring Metrics Reporters @@ -47,4 +47,4 @@ Gradle } } - \ No newline at end of file + diff --git a/micro-metrics/build.gradle b/micro-metrics/build.gradle index a0c1d3893..485252a5e 100644 --- a/micro-metrics/build.gradle +++ b/micro-metrics/build.gradle @@ -21,7 +21,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-metrics' version "$version" diff --git a/micro-mysql/README.md b/micro-mysql/README.md index 7edc0e6ca..3cffffb7f 100644 --- a/micro-mysql/README.md +++ b/micro-mysql/README.md @@ -6,17 +6,17 @@ Autowire com.aol.micro.server.utility.DistributedLockService into your beans to ## Getting The Microserver MySql Plugin -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-mysql/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-mysql) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-mysql/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-mysql) ### Maven ```xml - com.aol.microservices + com.oath.microservices micro-mysql x.yz ``` ### Gradle ```groovy - compile 'com.aol.microservices:micro-mysql:x.yz' -``` \ No newline at end of file + compile 'com.oath.microservices:micro-mysql:x.yz' +``` diff --git a/micro-mysql/build.gradle b/micro-mysql/build.gradle index 4c6b9f915..9a8d8c5d2 100644 --- a/micro-mysql/build.gradle +++ b/micro-mysql/build.gradle @@ -16,7 +16,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-mysql' version "$version" diff --git a/micro-reactive/README.md b/micro-reactive/README.md index 9135ce1af..a1318274d 100644 --- a/micro-reactive/README.md +++ b/micro-reactive/README.md @@ -141,20 +141,20 @@ Flux.just(1,2,3) ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-reactive/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-reactive) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-reactive/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-reactive) Simply add to the classpath Maven ```xml - com.aol.microservices + com.oath.microservices micro-reactive x.yz ``` Gradle ```groovy - compile 'com.aol.microservices:micro-reactive:x.yz' + compile 'com.oath.microservices:micro-reactive:x.yz' ``` diff --git a/micro-reactive/build.gradle b/micro-reactive/build.gradle index b26ade6a3..90e20fad6 100644 --- a/micro-reactive/build.gradle +++ b/micro-reactive/build.gradle @@ -16,7 +16,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-reactive' version "$version" diff --git a/micro-s3/README.md b/micro-s3/README.md index 0dbf77b5d..11b13c9cf 100644 --- a/micro-s3/README.md +++ b/micro-s3/README.md @@ -16,21 +16,21 @@ See also [micro-async-data-writer](https://github.com/aol/micro-server/tree/mast ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-s3/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-s3) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-s3/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-s3) Simply add to the classpath Maven ```xml - com.aol.microservices + com.oath.microservices micro-s3 x.yz ``` Gradle ```groovy - compile 'com.aol.microservices:micro-s3:x.yz' + compile 'com.oath.microservices:micro-s3:x.yz' ``` # Manifest comparison diff --git a/micro-s3/build.gradle b/micro-s3/build.gradle index 8ec884735..2c7fe977e 100644 --- a/micro-s3/build.gradle +++ b/micro-s3/build.gradle @@ -21,7 +21,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-s3' version "$version" diff --git a/micro-slack/build.gradle b/micro-slack/build.gradle index 1f4df4e23..3df4df966 100644 --- a/micro-slack/build.gradle +++ b/micro-slack/build.gradle @@ -17,7 +17,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-slack' version "$version" diff --git a/micro-spring-boot/README.md b/micro-spring-boot/README.md index a51ec4ba4..36775823c 100644 --- a/micro-spring-boot/README.md +++ b/micro-spring-boot/README.md @@ -54,21 +54,21 @@ public class SimpleResource{ ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-boot/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-boot) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-boot/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-boot) Add micro-spring-boot to the classpath Maven - com.aol.microservices + com.oath.microservices micro-spring-boot x.yz Gradle - compile 'com.aol.microservices:micro-spring-boot:x.yz' + compile 'com.oath.microservices:micro-spring-boot:x.yz' diff --git a/micro-spring-boot/build.gradle b/micro-spring-boot/build.gradle index 9bfbf170b..03221dc0d 100644 --- a/micro-spring-boot/build.gradle +++ b/micro-spring-boot/build.gradle @@ -41,7 +41,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-spring-boot' version "$version" diff --git a/micro-swagger/README.md b/micro-swagger/README.md index 8b1f405bd..08d903763 100644 --- a/micro-swagger/README.md +++ b/micro-swagger/README.md @@ -11,11 +11,11 @@ Simply add to the classpath Maven - com.aol.microservices + com.oath.microservices micro-swagger 0.62 Gradle - compile 'com.aol.microservices:micro-swagger:0.62' \ No newline at end of file + compile 'com.oath.microservices:micro-swagger:0.62' diff --git a/micro-swagger/build.gradle b/micro-swagger/build.gradle index 87c9b4c86..cb3663bd3 100644 --- a/micro-swagger/build.gradle +++ b/micro-swagger/build.gradle @@ -15,7 +15,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-swagger' version "$version" diff --git a/micro-tomcat-with-jersey/README.md b/micro-tomcat-with-jersey/README.md index 322b7949f..c38f97851 100644 --- a/micro-tomcat-with-jersey/README.md +++ b/micro-tomcat-with-jersey/README.md @@ -11,19 +11,19 @@ Tomcat does not currently support the Microserver micro-monolith style of develo ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-grizzly-with-jersey/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-grizzly-with-jersey) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-grizzly-with-jersey/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-grizzly-with-jersey) Simply add to the classpath Maven ```xml - com.aol.microservices + com.oath.microservices micro-tomcat-with-jersey x.yz ``` Gradle ```groovy - compile 'com.aol.microservices:micro-tomcat-with-jersey:x.yz' -``` \ No newline at end of file + compile 'com.oath.microservices:micro-tomcat-with-jersey:x.yz' +``` diff --git a/micro-tomcat-with-jersey/build.gradle b/micro-tomcat-with-jersey/build.gradle index 5809b6bf8..81238de97 100644 --- a/micro-tomcat-with-jersey/build.gradle +++ b/micro-tomcat-with-jersey/build.gradle @@ -16,7 +16,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-tomcat-with-jersey' version "$version" diff --git a/micro-tomcat/README.md b/micro-tomcat/README.md index 0f8e68a72..97263b311 100644 --- a/micro-tomcat/README.md +++ b/micro-tomcat/README.md @@ -11,19 +11,19 @@ Tomcat does not currently support the Microserver micro-monolith style of develo ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-grizzly/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-tomcat) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-grizzly/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-tomcat) Simply add to the classpath Maven ```xml - com.aol.microservices + com.oath.microservices micro-tomcat x.yz ``` Gradle ```groovy - compile 'com.aol.microservices:micro-tomcaty:x.yz' -``` \ No newline at end of file + compile 'com.oath.microservices:micro-tomcaty:x.yz' +``` diff --git a/micro-tomcat/build.gradle b/micro-tomcat/build.gradle index bedfc3bda..c7a533080 100644 --- a/micro-tomcat/build.gradle +++ b/micro-tomcat/build.gradle @@ -15,7 +15,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-tomcat' version "$version" diff --git a/micro-transactions/README.md b/micro-transactions/README.md index b65b64e2e..0d206ceb6 100644 --- a/micro-transactions/README.md +++ b/micro-transactions/README.md @@ -37,7 +37,7 @@ TransactionFlow is modelled on the Reader monad (eek!) - which allows for lazy e ## To use -[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-transactions/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.aol.microservices/micro-transactions) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-transactions/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.oath.microservices/micro-transactions) Simply add to the classpath @@ -45,7 +45,7 @@ Maven ```xml - com.aol.microservices + com.oath.microservices micro-transactions x.yz @@ -53,5 +53,5 @@ Maven Gradle ```gradle - compile 'com.aol.microservices:micro-transactions:x.yz' + compile 'com.oath.microservices:micro-transactions:x.yz' ``` diff --git a/micro-transactions/build.gradle b/micro-transactions/build.gradle index 08f9f5455..f0e440cfc 100644 --- a/micro-transactions/build.gradle +++ b/micro-transactions/build.gradle @@ -19,7 +19,7 @@ modifyPom { url 'https://github.com/aol/micro-server' inceptionYear '2015' - groupId 'com.aol.microservices' + groupId 'com.oath.microservices' artifactId 'micro-transactions' version "$version" diff --git a/settings.gradle b/settings.gradle index c77bf4f65..a5bea76f3 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,4 +1,4 @@ -rootProject.name = 'com.aol.microservices' +rootProject.name = 'com.oath.microservices' include ':micro-manifest-comparator' include ':micro-core' include ':micro-grizzly' @@ -41,4 +41,4 @@ include ':micro-event-metrics' include ':micro-metrics-datadog' include ':micro-log-streamer' include ':micro-jmx-metrics' -include ':micro-elasticache' \ No newline at end of file +include ':micro-elasticache'