From b24f94e74549c87e5c0b578cae737a5a88aaee84 Mon Sep 17 00:00:00 2001 From: Scott Kurz Date: Mon, 16 Sep 2019 16:41:53 -0400 Subject: [PATCH 1/2] Rename package prefix to org.microshed.boost.* Signed-off-by: Scott Kurz --- .../boost/common/BoostException.java | 2 +- .../microshed}/boost/common/BoostLoggerI.java | 2 +- .../boosters/AbstractBoosterConfig.java | 4 +-- .../boosters/BeanValidationBoosterConfig.java | 10 +++---- .../common/boosters/CDIBoosterConfig.java | 10 +++---- .../common/boosters/JAXRSBoosterConfig.java | 10 +++---- .../common/boosters/JDBCBoosterConfig.java | 14 +++++----- .../common/boosters/JPABoosterConfig.java | 10 +++---- .../common/boosters/JSONBBoosterConfig.java | 10 +++---- .../common/boosters/JSONPBoosterConfig.java | 10 +++---- .../boosters/MPConfigBoosterConfig.java | 10 +++---- .../MPFaultToleranceBoosterConfig.java | 10 +++---- .../boosters/MPHealthBoosterConfig.java | 10 +++---- .../common/boosters/MPJWTBoosterConfig.java | 10 +++---- .../boosters/MPMetricsBoosterConfig.java | 10 +++---- .../boosters/MPOpenAPIBoosterConfig.java | 10 +++---- .../boosters/MPOpenTracingBoosterConfig.java | 10 +++---- .../boosters/MPRestClientBoosterConfig.java | 10 +++---- .../boost/common/config/BoostProperties.java | 4 +-- .../common/config/BoosterConfigParams.java | 2 +- .../common/config/BoosterConfigurator.java | 8 +++--- .../boost/common/config/ConfigConstants.java | 2 +- .../boost/common/runtimes/RuntimeI.java | 4 +-- .../boost/common/utils/BoostUtil.java | 4 +-- .../boost/maven/plugin/AbstractMojo.java | 17 ++++++----- .../boost/maven/plugin/DebugMojo.java | 5 ++-- .../boost/maven/plugin/PackageMojo.java | 6 ++-- .../boost/maven/plugin/RunMojo.java | 5 ++-- .../boost/maven/plugin/StartMojo.java | 5 ++-- .../boost/maven/plugin/StopMojo.java | 5 ++-- .../boost/maven/runtimes/RuntimeParams.java | 5 ++-- .../boost/maven/utils/BoostLogger.java | 5 ++-- .../boost/maven/utils/MavenProjectUtil.java | 5 ++-- .../runtimes/openliberty/LibertyRuntime.java | 23 ++++++++------- .../LibertyServerConfigGenerator.java | 12 ++++---- .../LibertyBeanValidationBoosterConfig.java | 16 +++++------ .../openliberty/boosters/LibertyBoosterI.java | 6 ++-- .../boosters/LibertyCDIBoosterConfig.java | 16 +++++------ .../boosters/LibertyJAXRSBoosterConfig.java | 18 ++++++------ .../boosters/LibertyJDBCBoosterConfig.java | 18 ++++++------ .../boosters/LibertyJPABoosterConfig.java | 18 ++++++------ .../boosters/LibertyJSONBBoosterConfig.java | 17 ++++++----- .../boosters/LibertyJSONPBoosterConfig.java | 16 +++++------ .../LibertyMPConfigBoosterConfig.java | 16 +++++------ .../LibertyMPFaultToleranceBoosterConfig.java | 16 +++++------ .../LibertyMPHealthBoosterConfig.java | 16 +++++------ .../boosters/LibertyMPJWTBoosterConfig.java | 17 +++++------ .../LibertyMPMetricsBoosterConfig.java | 16 +++++------ .../LibertyMPOpenAPIBoosterConfig.java | 16 +++++------ .../LibertyMPOpenTracingBoosterConfig.java | 16 +++++------ .../LibertyMPRestClientBoosterConfig.java | 16 +++++------ .../services/boost.common.runtimes.RuntimeI | 1 - ...g.microshed.boost.common.runtimes.RuntimeI | 1 + .../boosters/BeanValidationBoosterTest.java | 19 ++++++------- .../runtimes/boosters/CDIBoosterTest.java | 19 ++++++------- .../runtimes/boosters/JAXRSBoosterTest.java | 19 ++++++------- .../runtimes/boosters/JDBCBoosterTest.java | 23 ++++++++------- .../runtimes/boosters/JSONBBoosterTest.java | 19 ++++++------- .../runtimes/boosters/JSONPBoosterTest.java | 19 ++++++------- .../boosters/MPConfigBoosterTest.java | 19 ++++++------- .../boosters/MPFaultToleranceBoosterTest.java | 19 ++++++------- .../boosters/MPHealthBoosterTest.java | 19 ++++++------- .../boosters/MPMetricsBoosterTest.java | 19 ++++++------- .../boosters/MPOpenAPIBoosterTest.java | 19 ++++++------- .../boosters/MPOpenTracingBoosterTest.java | 19 ++++++------- .../boosters/MPRestClientBoosterTest.java | 19 ++++++------- .../LibertyServerConfigGeneratorTest.java | 28 +++++++++---------- .../boost/runtimes/utils/BoosterUtil.java | 8 +++--- .../boost/runtimes/utils/CommonLogger.java | 4 +-- .../boost/runtimes/utils/ConfigFileUtils.java | 4 +-- .../boost/runtimes/utils/DOMUtils.java | 2 +- .../boost/runtimes/tomee/TomeeRuntime.java | 17 ++++++----- .../tomee/TomeeServerConfigGenerator.java | 15 +++++----- .../tomee/boosters/TomeeBoosterI.java | 2 +- .../boosters/TomeeMPConfigBoosterConfig.java | 10 +++---- .../boosters/TomeeMPHealthBoosterConfig.java | 10 +++---- .../boosters/TomeeMPJWTBoosterConfig.java | 10 +++---- .../TomeeMPRestClientBoosterConfig.java | 10 +++---- .../services/boost.common.runtimes.RuntimeI | 1 - ...g.microshed.boost.common.runtimes.RuntimeI | 1 + 80 files changed, 440 insertions(+), 468 deletions(-) rename boost-common/src/main/java/{ => org/microshed}/boost/common/BoostException.java (96%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/BoostLoggerI.java (97%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/boosters/AbstractBoosterConfig.java (98%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/boosters/BeanValidationBoosterConfig.java (78%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/boosters/CDIBoosterConfig.java (78%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/boosters/JAXRSBoosterConfig.java (78%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/boosters/JDBCBoosterConfig.java (95%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/boosters/JPABoosterConfig.java (78%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/boosters/JSONBBoosterConfig.java (78%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/boosters/JSONPBoosterConfig.java (78%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/boosters/MPConfigBoosterConfig.java (78%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/boosters/MPFaultToleranceBoosterConfig.java (78%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/boosters/MPHealthBoosterConfig.java (78%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/boosters/MPJWTBoosterConfig.java (78%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/boosters/MPMetricsBoosterConfig.java (78%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/boosters/MPOpenAPIBoosterConfig.java (78%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/boosters/MPOpenTracingBoosterConfig.java (78%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/boosters/MPRestClientBoosterConfig.java (78%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/config/BoostProperties.java (97%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/config/BoosterConfigParams.java (96%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/config/BoosterConfigurator.java (96%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/config/ConfigConstants.java (99%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/runtimes/RuntimeI.java (90%) rename boost-common/src/main/java/{ => org/microshed}/boost/common/utils/BoostUtil.java (96%) rename boost-maven/boost-maven-plugin/src/main/java/{ => org/microshed}/boost/maven/plugin/AbstractMojo.java (93%) rename boost-maven/boost-maven-plugin/src/main/java/{ => org/microshed}/boost/maven/plugin/DebugMojo.java (94%) rename boost-maven/boost-maven-plugin/src/main/java/{ => org/microshed}/boost/maven/plugin/PackageMojo.java (94%) rename boost-maven/boost-maven-plugin/src/main/java/{ => org/microshed}/boost/maven/plugin/RunMojo.java (94%) rename boost-maven/boost-maven-plugin/src/main/java/{ => org/microshed}/boost/maven/plugin/StartMojo.java (95%) rename boost-maven/boost-maven-plugin/src/main/java/{ => org/microshed}/boost/maven/plugin/StopMojo.java (93%) rename boost-maven/boost-maven-plugin/src/main/java/{ => org/microshed}/boost/maven/runtimes/RuntimeParams.java (96%) rename boost-maven/boost-maven-plugin/src/main/java/{ => org/microshed}/boost/maven/utils/BoostLogger.java (95%) rename boost-maven/boost-maven-plugin/src/main/java/{ => org/microshed}/boost/maven/utils/MavenProjectUtil.java (98%) rename boost-maven/boost-runtimes/runtime-openliberty/src/main/java/{ => org/microshed}/boost/runtimes/openliberty/LibertyRuntime.java (95%) rename boost-maven/boost-runtimes/runtime-openliberty/src/main/java/{ => org/microshed}/boost/runtimes/openliberty/LibertyServerConfigGenerator.java (97%) rename boost-maven/boost-runtimes/runtime-openliberty/src/main/java/{ => org/microshed}/boost/runtimes/openliberty/boosters/LibertyBeanValidationBoosterConfig.java (68%) rename boost-maven/boost-runtimes/runtime-openliberty/src/main/java/{ => org/microshed}/boost/runtimes/openliberty/boosters/LibertyBoosterI.java (79%) rename boost-maven/boost-runtimes/runtime-openliberty/src/main/java/{ => org/microshed}/boost/runtimes/openliberty/boosters/LibertyCDIBoosterConfig.java (69%) rename boost-maven/boost-runtimes/runtime-openliberty/src/main/java/{ => org/microshed}/boost/runtimes/openliberty/boosters/LibertyJAXRSBoosterConfig.java (66%) rename boost-maven/boost-runtimes/runtime-openliberty/src/main/java/{ => org/microshed}/boost/runtimes/openliberty/boosters/LibertyJDBCBoosterConfig.java (76%) rename boost-maven/boost-runtimes/runtime-openliberty/src/main/java/{ => org/microshed}/boost/runtimes/openliberty/boosters/LibertyJPABoosterConfig.java (66%) rename boost-maven/boost-runtimes/runtime-openliberty/src/main/java/{ => org/microshed}/boost/runtimes/openliberty/boosters/LibertyJSONBBoosterConfig.java (68%) rename boost-maven/boost-runtimes/runtime-openliberty/src/main/java/{ => org/microshed}/boost/runtimes/openliberty/boosters/LibertyJSONPBoosterConfig.java (70%) rename boost-maven/boost-runtimes/runtime-openliberty/src/main/java/{ => org/microshed}/boost/runtimes/openliberty/boosters/LibertyMPConfigBoosterConfig.java (67%) rename boost-maven/boost-runtimes/runtime-openliberty/src/main/java/{ => org/microshed}/boost/runtimes/openliberty/boosters/LibertyMPFaultToleranceBoosterConfig.java (70%) rename boost-maven/boost-runtimes/runtime-openliberty/src/main/java/{ => org/microshed}/boost/runtimes/openliberty/boosters/LibertyMPHealthBoosterConfig.java (70%) rename boost-maven/boost-runtimes/runtime-openliberty/src/main/java/{ => org/microshed}/boost/runtimes/openliberty/boosters/LibertyMPJWTBoosterConfig.java (68%) rename boost-maven/boost-runtimes/runtime-openliberty/src/main/java/{ => org/microshed}/boost/runtimes/openliberty/boosters/LibertyMPMetricsBoosterConfig.java (74%) rename boost-maven/boost-runtimes/runtime-openliberty/src/main/java/{ => org/microshed}/boost/runtimes/openliberty/boosters/LibertyMPOpenAPIBoosterConfig.java (70%) rename boost-maven/boost-runtimes/runtime-openliberty/src/main/java/{ => org/microshed}/boost/runtimes/openliberty/boosters/LibertyMPOpenTracingBoosterConfig.java (72%) rename boost-maven/boost-runtimes/runtime-openliberty/src/main/java/{ => org/microshed}/boost/runtimes/openliberty/boosters/LibertyMPRestClientBoosterConfig.java (72%) delete mode 100644 boost-maven/boost-runtimes/runtime-openliberty/src/main/resources/META-INF/services/boost.common.runtimes.RuntimeI create mode 100644 boost-maven/boost-runtimes/runtime-openliberty/src/main/resources/META-INF/services/org.microshed.boost.common.runtimes.RuntimeI rename boost-maven/boost-runtimes/runtime-openliberty/src/test/java/{io/openliberty => org/microshed}/boost/runtimes/boosters/BeanValidationBoosterTest.java (86%) rename boost-maven/boost-runtimes/runtime-openliberty/src/test/java/{io/openliberty => org/microshed}/boost/runtimes/boosters/CDIBoosterTest.java (86%) rename boost-maven/boost-runtimes/runtime-openliberty/src/test/java/{io/openliberty => org/microshed}/boost/runtimes/boosters/JAXRSBoosterTest.java (86%) rename boost-maven/boost-runtimes/runtime-openliberty/src/test/java/{io/openliberty => org/microshed}/boost/runtimes/boosters/JDBCBoosterTest.java (93%) rename boost-maven/boost-runtimes/runtime-openliberty/src/test/java/{io/openliberty => org/microshed}/boost/runtimes/boosters/JSONBBoosterTest.java (80%) rename boost-maven/boost-runtimes/runtime-openliberty/src/test/java/{io/openliberty => org/microshed}/boost/runtimes/boosters/JSONPBoosterTest.java (86%) rename boost-maven/boost-runtimes/runtime-openliberty/src/test/java/{io/openliberty => org/microshed}/boost/runtimes/boosters/MPConfigBoosterTest.java (81%) rename boost-maven/boost-runtimes/runtime-openliberty/src/test/java/{io/openliberty => org/microshed}/boost/runtimes/boosters/MPFaultToleranceBoosterTest.java (87%) rename boost-maven/boost-runtimes/runtime-openliberty/src/test/java/{io/openliberty => org/microshed}/boost/runtimes/boosters/MPHealthBoosterTest.java (86%) rename boost-maven/boost-runtimes/runtime-openliberty/src/test/java/{io/openliberty => org/microshed}/boost/runtimes/boosters/MPMetricsBoosterTest.java (86%) rename boost-maven/boost-runtimes/runtime-openliberty/src/test/java/{io/openliberty => org/microshed}/boost/runtimes/boosters/MPOpenAPIBoosterTest.java (86%) rename boost-maven/boost-runtimes/runtime-openliberty/src/test/java/{io/openliberty => org/microshed}/boost/runtimes/boosters/MPOpenTracingBoosterTest.java (90%) rename boost-maven/boost-runtimes/runtime-openliberty/src/test/java/{io/openliberty => org/microshed}/boost/runtimes/boosters/MPRestClientBoosterTest.java (90%) rename boost-maven/boost-runtimes/runtime-openliberty/src/test/java/{io/openliberty => org/microshed}/boost/runtimes/config/LibertyServerConfigGeneratorTest.java (96%) rename boost-maven/boost-runtimes/runtime-openliberty/src/test/java/{io/openliberty => org/microshed}/boost/runtimes/utils/BoosterUtil.java (83%) rename boost-maven/boost-runtimes/runtime-openliberty/src/test/java/{io/openliberty => org/microshed}/boost/runtimes/utils/CommonLogger.java (94%) rename boost-maven/boost-runtimes/runtime-openliberty/src/test/java/{io/openliberty => org/microshed}/boost/runtimes/utils/ConfigFileUtils.java (95%) rename boost-maven/boost-runtimes/runtime-openliberty/src/test/java/{io/openliberty => org/microshed}/boost/runtimes/utils/DOMUtils.java (96%) rename boost-maven/boost-runtimes/runtime-tomee/src/main/java/{ => org/microshed}/boost/runtimes/tomee/TomeeRuntime.java (94%) rename boost-maven/boost-runtimes/runtime-tomee/src/main/java/{ => org/microshed}/boost/runtimes/tomee/TomeeServerConfigGenerator.java (97%) rename boost-maven/boost-runtimes/runtime-tomee/src/main/java/{ => org/microshed}/boost/runtimes/tomee/boosters/TomeeBoosterI.java (92%) rename boost-maven/boost-runtimes/runtime-tomee/src/main/java/{ => org/microshed}/boost/runtimes/tomee/boosters/TomeeMPConfigBoosterConfig.java (80%) rename boost-maven/boost-runtimes/runtime-tomee/src/main/java/{ => org/microshed}/boost/runtimes/tomee/boosters/TomeeMPHealthBoosterConfig.java (80%) rename boost-maven/boost-runtimes/runtime-tomee/src/main/java/{ => org/microshed}/boost/runtimes/tomee/boosters/TomeeMPJWTBoosterConfig.java (80%) rename boost-maven/boost-runtimes/runtime-tomee/src/main/java/{ => org/microshed}/boost/runtimes/tomee/boosters/TomeeMPRestClientBoosterConfig.java (79%) delete mode 100644 boost-maven/boost-runtimes/runtime-tomee/src/main/resources/META-INF/services/boost.common.runtimes.RuntimeI create mode 100644 boost-maven/boost-runtimes/runtime-tomee/src/main/resources/META-INF/services/org.microshed.boost.common.runtimes.RuntimeI diff --git a/boost-common/src/main/java/boost/common/BoostException.java b/boost-common/src/main/java/org/microshed/boost/common/BoostException.java similarity index 96% rename from boost-common/src/main/java/boost/common/BoostException.java rename to boost-common/src/main/java/org/microshed/boost/common/BoostException.java index e9aa8b51..2826f401 100644 --- a/boost-common/src/main/java/boost/common/BoostException.java +++ b/boost-common/src/main/java/org/microshed/boost/common/BoostException.java @@ -9,7 +9,7 @@ * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common; +package org.microshed.boost.common; import io.openliberty.tools.common.plugins.util.PluginExecutionException; diff --git a/boost-common/src/main/java/boost/common/BoostLoggerI.java b/boost-common/src/main/java/org/microshed/boost/common/BoostLoggerI.java similarity index 97% rename from boost-common/src/main/java/boost/common/BoostLoggerI.java rename to boost-common/src/main/java/org/microshed/boost/common/BoostLoggerI.java index 2500d978..769c494a 100644 --- a/boost-common/src/main/java/boost/common/BoostLoggerI.java +++ b/boost-common/src/main/java/org/microshed/boost/common/BoostLoggerI.java @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common; +package org.microshed.boost.common; public interface BoostLoggerI { diff --git a/boost-common/src/main/java/boost/common/boosters/AbstractBoosterConfig.java b/boost-common/src/main/java/org/microshed/boost/common/boosters/AbstractBoosterConfig.java similarity index 98% rename from boost-common/src/main/java/boost/common/boosters/AbstractBoosterConfig.java rename to boost-common/src/main/java/org/microshed/boost/common/boosters/AbstractBoosterConfig.java index 121950b4..3c361cd1 100644 --- a/boost-common/src/main/java/boost/common/boosters/AbstractBoosterConfig.java +++ b/boost-common/src/main/java/org/microshed/boost/common/boosters/AbstractBoosterConfig.java @@ -9,7 +9,7 @@ * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.boosters; +package org.microshed.boost.common.boosters; import java.lang.annotation.ElementType; import java.lang.annotation.Inherited; @@ -18,7 +18,7 @@ import java.lang.annotation.Target; import java.util.List; -import boost.common.BoostException; +import org.microshed.boost.common.BoostException; /** * Interface to describe common function across all technology Booster Pack diff --git a/boost-common/src/main/java/boost/common/boosters/BeanValidationBoosterConfig.java b/boost-common/src/main/java/org/microshed/boost/common/boosters/BeanValidationBoosterConfig.java similarity index 78% rename from boost-common/src/main/java/boost/common/boosters/BeanValidationBoosterConfig.java rename to boost-common/src/main/java/org/microshed/boost/common/boosters/BeanValidationBoosterConfig.java index bb782d0c..7ad184fe 100644 --- a/boost-common/src/main/java/boost/common/boosters/BeanValidationBoosterConfig.java +++ b/boost-common/src/main/java/org/microshed/boost/common/boosters/BeanValidationBoosterConfig.java @@ -8,15 +8,15 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.boosters; +package org.microshed.boost.common.boosters; import java.util.ArrayList; import java.util.List; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; -import boost.common.config.BoosterConfigParams; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; +import org.microshed.boost.common.config.BoosterConfigParams; @BoosterCoordinates(AbstractBoosterConfig.BOOSTERS_GROUP_ID + ":bean-validation") public class BeanValidationBoosterConfig extends AbstractBoosterConfig { diff --git a/boost-common/src/main/java/boost/common/boosters/CDIBoosterConfig.java b/boost-common/src/main/java/org/microshed/boost/common/boosters/CDIBoosterConfig.java similarity index 78% rename from boost-common/src/main/java/boost/common/boosters/CDIBoosterConfig.java rename to boost-common/src/main/java/org/microshed/boost/common/boosters/CDIBoosterConfig.java index 5abf55d8..bc71c105 100644 --- a/boost-common/src/main/java/boost/common/boosters/CDIBoosterConfig.java +++ b/boost-common/src/main/java/org/microshed/boost/common/boosters/CDIBoosterConfig.java @@ -8,15 +8,15 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.boosters; +package org.microshed.boost.common.boosters; import java.util.ArrayList; import java.util.List; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; -import boost.common.config.BoosterConfigParams; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; +import org.microshed.boost.common.config.BoosterConfigParams; @BoosterCoordinates(AbstractBoosterConfig.BOOSTERS_GROUP_ID + ":cdi") public class CDIBoosterConfig extends AbstractBoosterConfig { diff --git a/boost-common/src/main/java/boost/common/boosters/JAXRSBoosterConfig.java b/boost-common/src/main/java/org/microshed/boost/common/boosters/JAXRSBoosterConfig.java similarity index 78% rename from boost-common/src/main/java/boost/common/boosters/JAXRSBoosterConfig.java rename to boost-common/src/main/java/org/microshed/boost/common/boosters/JAXRSBoosterConfig.java index 0243f855..157d8515 100644 --- a/boost-common/src/main/java/boost/common/boosters/JAXRSBoosterConfig.java +++ b/boost-common/src/main/java/org/microshed/boost/common/boosters/JAXRSBoosterConfig.java @@ -8,15 +8,15 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.boosters; +package org.microshed.boost.common.boosters; import java.util.ArrayList; import java.util.List; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; -import boost.common.config.BoosterConfigParams; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; +import org.microshed.boost.common.config.BoosterConfigParams; @BoosterCoordinates(AbstractBoosterConfig.BOOSTERS_GROUP_ID + ":jaxrs") public class JAXRSBoosterConfig extends AbstractBoosterConfig { diff --git a/boost-common/src/main/java/boost/common/boosters/JDBCBoosterConfig.java b/boost-common/src/main/java/org/microshed/boost/common/boosters/JDBCBoosterConfig.java similarity index 95% rename from boost-common/src/main/java/boost/common/boosters/JDBCBoosterConfig.java rename to boost-common/src/main/java/org/microshed/boost/common/boosters/JDBCBoosterConfig.java index 6a1a3dac..d560c7af 100644 --- a/boost-common/src/main/java/boost/common/boosters/JDBCBoosterConfig.java +++ b/boost-common/src/main/java/org/microshed/boost/common/boosters/JDBCBoosterConfig.java @@ -8,9 +8,9 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.boosters; +package org.microshed.boost.common.boosters; -import static boost.common.config.ConfigConstants.*; +import static org.microshed.boost.common.config.ConfigConstants.*; import java.util.ArrayList; import java.util.HashMap; @@ -18,11 +18,11 @@ import java.util.Map; import java.util.Properties; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; -import boost.common.config.BoostProperties; -import boost.common.config.BoosterConfigParams; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; +import org.microshed.boost.common.config.BoostProperties; +import org.microshed.boost.common.config.BoosterConfigParams; @BoosterCoordinates(AbstractBoosterConfig.BOOSTERS_GROUP_ID + ":jdbc") public class JDBCBoosterConfig extends AbstractBoosterConfig { diff --git a/boost-common/src/main/java/boost/common/boosters/JPABoosterConfig.java b/boost-common/src/main/java/org/microshed/boost/common/boosters/JPABoosterConfig.java similarity index 78% rename from boost-common/src/main/java/boost/common/boosters/JPABoosterConfig.java rename to boost-common/src/main/java/org/microshed/boost/common/boosters/JPABoosterConfig.java index 4f53cc00..ba2c1e6e 100644 --- a/boost-common/src/main/java/boost/common/boosters/JPABoosterConfig.java +++ b/boost-common/src/main/java/org/microshed/boost/common/boosters/JPABoosterConfig.java @@ -8,15 +8,15 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.boosters; +package org.microshed.boost.common.boosters; import java.util.ArrayList; import java.util.List; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; -import boost.common.config.BoosterConfigParams; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; +import org.microshed.boost.common.config.BoosterConfigParams; @BoosterCoordinates(AbstractBoosterConfig.BOOSTERS_GROUP_ID + ":jpa") public class JPABoosterConfig extends AbstractBoosterConfig { diff --git a/boost-common/src/main/java/boost/common/boosters/JSONBBoosterConfig.java b/boost-common/src/main/java/org/microshed/boost/common/boosters/JSONBBoosterConfig.java similarity index 78% rename from boost-common/src/main/java/boost/common/boosters/JSONBBoosterConfig.java rename to boost-common/src/main/java/org/microshed/boost/common/boosters/JSONBBoosterConfig.java index fd15244e..fb3c5702 100644 --- a/boost-common/src/main/java/boost/common/boosters/JSONBBoosterConfig.java +++ b/boost-common/src/main/java/org/microshed/boost/common/boosters/JSONBBoosterConfig.java @@ -8,15 +8,15 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.boosters; +package org.microshed.boost.common.boosters; import java.util.ArrayList; import java.util.List; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; -import boost.common.config.BoosterConfigParams; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; +import org.microshed.boost.common.config.BoosterConfigParams; @BoosterCoordinates(AbstractBoosterConfig.BOOSTERS_GROUP_ID + ":jsonb") public class JSONBBoosterConfig extends AbstractBoosterConfig { diff --git a/boost-common/src/main/java/boost/common/boosters/JSONPBoosterConfig.java b/boost-common/src/main/java/org/microshed/boost/common/boosters/JSONPBoosterConfig.java similarity index 78% rename from boost-common/src/main/java/boost/common/boosters/JSONPBoosterConfig.java rename to boost-common/src/main/java/org/microshed/boost/common/boosters/JSONPBoosterConfig.java index f0c05338..499150cd 100644 --- a/boost-common/src/main/java/boost/common/boosters/JSONPBoosterConfig.java +++ b/boost-common/src/main/java/org/microshed/boost/common/boosters/JSONPBoosterConfig.java @@ -8,15 +8,15 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.boosters; +package org.microshed.boost.common.boosters; import java.util.ArrayList; import java.util.List; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; -import boost.common.config.BoosterConfigParams; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; +import org.microshed.boost.common.config.BoosterConfigParams; @BoosterCoordinates(AbstractBoosterConfig.BOOSTERS_GROUP_ID + ":jsonp") public class JSONPBoosterConfig extends AbstractBoosterConfig { diff --git a/boost-common/src/main/java/boost/common/boosters/MPConfigBoosterConfig.java b/boost-common/src/main/java/org/microshed/boost/common/boosters/MPConfigBoosterConfig.java similarity index 78% rename from boost-common/src/main/java/boost/common/boosters/MPConfigBoosterConfig.java rename to boost-common/src/main/java/org/microshed/boost/common/boosters/MPConfigBoosterConfig.java index c943fafd..01a8d8e7 100644 --- a/boost-common/src/main/java/boost/common/boosters/MPConfigBoosterConfig.java +++ b/boost-common/src/main/java/org/microshed/boost/common/boosters/MPConfigBoosterConfig.java @@ -8,15 +8,15 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.boosters; +package org.microshed.boost.common.boosters; import java.util.ArrayList; import java.util.List; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; -import boost.common.config.BoosterConfigParams; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; +import org.microshed.boost.common.config.BoosterConfigParams; @BoosterCoordinates(AbstractBoosterConfig.BOOSTERS_GROUP_ID + ":mp-config") public class MPConfigBoosterConfig extends AbstractBoosterConfig { diff --git a/boost-common/src/main/java/boost/common/boosters/MPFaultToleranceBoosterConfig.java b/boost-common/src/main/java/org/microshed/boost/common/boosters/MPFaultToleranceBoosterConfig.java similarity index 78% rename from boost-common/src/main/java/boost/common/boosters/MPFaultToleranceBoosterConfig.java rename to boost-common/src/main/java/org/microshed/boost/common/boosters/MPFaultToleranceBoosterConfig.java index 77e82602..486f5fc2 100644 --- a/boost-common/src/main/java/boost/common/boosters/MPFaultToleranceBoosterConfig.java +++ b/boost-common/src/main/java/org/microshed/boost/common/boosters/MPFaultToleranceBoosterConfig.java @@ -8,15 +8,15 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.boosters; +package org.microshed.boost.common.boosters; import java.util.ArrayList; import java.util.List; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; -import boost.common.config.BoosterConfigParams; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; +import org.microshed.boost.common.config.BoosterConfigParams; @BoosterCoordinates(AbstractBoosterConfig.BOOSTERS_GROUP_ID + ":mp-fault-tolerance") public class MPFaultToleranceBoosterConfig extends AbstractBoosterConfig { diff --git a/boost-common/src/main/java/boost/common/boosters/MPHealthBoosterConfig.java b/boost-common/src/main/java/org/microshed/boost/common/boosters/MPHealthBoosterConfig.java similarity index 78% rename from boost-common/src/main/java/boost/common/boosters/MPHealthBoosterConfig.java rename to boost-common/src/main/java/org/microshed/boost/common/boosters/MPHealthBoosterConfig.java index 311c18c6..447bccae 100644 --- a/boost-common/src/main/java/boost/common/boosters/MPHealthBoosterConfig.java +++ b/boost-common/src/main/java/org/microshed/boost/common/boosters/MPHealthBoosterConfig.java @@ -8,15 +8,15 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.boosters; +package org.microshed.boost.common.boosters; import java.util.ArrayList; import java.util.List; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; -import boost.common.config.BoosterConfigParams; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; +import org.microshed.boost.common.config.BoosterConfigParams; @BoosterCoordinates(AbstractBoosterConfig.BOOSTERS_GROUP_ID + ":mp-health") public class MPHealthBoosterConfig extends AbstractBoosterConfig { diff --git a/boost-common/src/main/java/boost/common/boosters/MPJWTBoosterConfig.java b/boost-common/src/main/java/org/microshed/boost/common/boosters/MPJWTBoosterConfig.java similarity index 78% rename from boost-common/src/main/java/boost/common/boosters/MPJWTBoosterConfig.java rename to boost-common/src/main/java/org/microshed/boost/common/boosters/MPJWTBoosterConfig.java index 68f5ae54..fa480abd 100644 --- a/boost-common/src/main/java/boost/common/boosters/MPJWTBoosterConfig.java +++ b/boost-common/src/main/java/org/microshed/boost/common/boosters/MPJWTBoosterConfig.java @@ -8,16 +8,16 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.boosters; +package org.microshed.boost.common.boosters; import java.util.ArrayList; import java.util.List; import java.util.Map; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; -import boost.common.config.BoosterConfigParams; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; +import org.microshed.boost.common.config.BoosterConfigParams; @BoosterCoordinates(AbstractBoosterConfig.BOOSTERS_GROUP_ID + ":mp-jwt") public class MPJWTBoosterConfig extends AbstractBoosterConfig { diff --git a/boost-common/src/main/java/boost/common/boosters/MPMetricsBoosterConfig.java b/boost-common/src/main/java/org/microshed/boost/common/boosters/MPMetricsBoosterConfig.java similarity index 78% rename from boost-common/src/main/java/boost/common/boosters/MPMetricsBoosterConfig.java rename to boost-common/src/main/java/org/microshed/boost/common/boosters/MPMetricsBoosterConfig.java index 2f9ebf9f..70735d07 100644 --- a/boost-common/src/main/java/boost/common/boosters/MPMetricsBoosterConfig.java +++ b/boost-common/src/main/java/org/microshed/boost/common/boosters/MPMetricsBoosterConfig.java @@ -8,15 +8,15 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.boosters; +package org.microshed.boost.common.boosters; import java.util.ArrayList; import java.util.List; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; -import boost.common.config.BoosterConfigParams; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; +import org.microshed.boost.common.config.BoosterConfigParams; @BoosterCoordinates(AbstractBoosterConfig.BOOSTERS_GROUP_ID + ":mp-metrics") public class MPMetricsBoosterConfig extends AbstractBoosterConfig { diff --git a/boost-common/src/main/java/boost/common/boosters/MPOpenAPIBoosterConfig.java b/boost-common/src/main/java/org/microshed/boost/common/boosters/MPOpenAPIBoosterConfig.java similarity index 78% rename from boost-common/src/main/java/boost/common/boosters/MPOpenAPIBoosterConfig.java rename to boost-common/src/main/java/org/microshed/boost/common/boosters/MPOpenAPIBoosterConfig.java index 1833add2..df350a41 100644 --- a/boost-common/src/main/java/boost/common/boosters/MPOpenAPIBoosterConfig.java +++ b/boost-common/src/main/java/org/microshed/boost/common/boosters/MPOpenAPIBoosterConfig.java @@ -8,15 +8,15 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.boosters; +package org.microshed.boost.common.boosters; import java.util.ArrayList; import java.util.List; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; -import boost.common.config.BoosterConfigParams; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; +import org.microshed.boost.common.config.BoosterConfigParams; @BoosterCoordinates(AbstractBoosterConfig.BOOSTERS_GROUP_ID + ":mp-openapi") public class MPOpenAPIBoosterConfig extends AbstractBoosterConfig { diff --git a/boost-common/src/main/java/boost/common/boosters/MPOpenTracingBoosterConfig.java b/boost-common/src/main/java/org/microshed/boost/common/boosters/MPOpenTracingBoosterConfig.java similarity index 78% rename from boost-common/src/main/java/boost/common/boosters/MPOpenTracingBoosterConfig.java rename to boost-common/src/main/java/org/microshed/boost/common/boosters/MPOpenTracingBoosterConfig.java index 72c78cc8..4a9473fe 100644 --- a/boost-common/src/main/java/boost/common/boosters/MPOpenTracingBoosterConfig.java +++ b/boost-common/src/main/java/org/microshed/boost/common/boosters/MPOpenTracingBoosterConfig.java @@ -8,15 +8,15 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.boosters; +package org.microshed.boost.common.boosters; import java.util.ArrayList; import java.util.List; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; -import boost.common.config.BoosterConfigParams; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; +import org.microshed.boost.common.config.BoosterConfigParams; @BoosterCoordinates(AbstractBoosterConfig.BOOSTERS_GROUP_ID + ":mp-opentracing") public class MPOpenTracingBoosterConfig extends AbstractBoosterConfig { diff --git a/boost-common/src/main/java/boost/common/boosters/MPRestClientBoosterConfig.java b/boost-common/src/main/java/org/microshed/boost/common/boosters/MPRestClientBoosterConfig.java similarity index 78% rename from boost-common/src/main/java/boost/common/boosters/MPRestClientBoosterConfig.java rename to boost-common/src/main/java/org/microshed/boost/common/boosters/MPRestClientBoosterConfig.java index 72c9d616..92be919f 100644 --- a/boost-common/src/main/java/boost/common/boosters/MPRestClientBoosterConfig.java +++ b/boost-common/src/main/java/org/microshed/boost/common/boosters/MPRestClientBoosterConfig.java @@ -8,15 +8,15 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.boosters; +package org.microshed.boost.common.boosters; import java.util.ArrayList; import java.util.List; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; -import boost.common.config.BoosterConfigParams; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.AbstractBoosterConfig.BoosterCoordinates; +import org.microshed.boost.common.config.BoosterConfigParams; @BoosterCoordinates(AbstractBoosterConfig.BOOSTERS_GROUP_ID + ":mp-rest-client") public class MPRestClientBoosterConfig extends AbstractBoosterConfig { diff --git a/boost-common/src/main/java/boost/common/config/BoostProperties.java b/boost-common/src/main/java/org/microshed/boost/common/config/BoostProperties.java similarity index 97% rename from boost-common/src/main/java/boost/common/config/BoostProperties.java rename to boost-common/src/main/java/org/microshed/boost/common/config/BoostProperties.java index 1b116bc9..c363589a 100644 --- a/boost-common/src/main/java/boost/common/config/BoostProperties.java +++ b/boost-common/src/main/java/org/microshed/boost/common/config/BoostProperties.java @@ -9,13 +9,13 @@ * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.config; +package org.microshed.boost.common.config; import java.util.Map; import java.util.HashMap; import java.util.Properties; -import boost.common.BoostLoggerI; +import org.microshed.boost.common.BoostLoggerI; public final class BoostProperties { diff --git a/boost-common/src/main/java/boost/common/config/BoosterConfigParams.java b/boost-common/src/main/java/org/microshed/boost/common/config/BoosterConfigParams.java similarity index 96% rename from boost-common/src/main/java/boost/common/config/BoosterConfigParams.java rename to boost-common/src/main/java/org/microshed/boost/common/config/BoosterConfigParams.java index 21596989..76adbac9 100644 --- a/boost-common/src/main/java/boost/common/config/BoosterConfigParams.java +++ b/boost-common/src/main/java/org/microshed/boost/common/config/BoosterConfigParams.java @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.config; +package org.microshed.boost.common.config; import java.util.Map; import java.util.Properties; diff --git a/boost-common/src/main/java/boost/common/config/BoosterConfigurator.java b/boost-common/src/main/java/org/microshed/boost/common/config/BoosterConfigurator.java similarity index 96% rename from boost-common/src/main/java/boost/common/config/BoosterConfigurator.java rename to boost-common/src/main/java/org/microshed/boost/common/config/BoosterConfigurator.java index 41d0937e..a5e3c6f0 100644 --- a/boost-common/src/main/java/boost/common/config/BoosterConfigurator.java +++ b/boost-common/src/main/java/org/microshed/boost/common/config/BoosterConfigurator.java @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.config; +package org.microshed.boost.common.config; import java.io.File; import java.io.IOException; @@ -25,11 +25,11 @@ import java.util.jar.JarFile; import java.util.zip.ZipEntry; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.AbstractBoosterConfig; import org.reflections.Reflections; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.AbstractBoosterConfig; import javassist.ClassPool; import javassist.CtClass; import javassist.LoaderClassPath; diff --git a/boost-common/src/main/java/boost/common/config/ConfigConstants.java b/boost-common/src/main/java/org/microshed/boost/common/config/ConfigConstants.java similarity index 99% rename from boost-common/src/main/java/boost/common/config/ConfigConstants.java rename to boost-common/src/main/java/org/microshed/boost/common/config/ConfigConstants.java index c21c9af9..be76c4df 100644 --- a/boost-common/src/main/java/boost/common/config/ConfigConstants.java +++ b/boost-common/src/main/java/org/microshed/boost/common/config/ConfigConstants.java @@ -9,7 +9,7 @@ * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.config; +package org.microshed.boost.common.config; public final class ConfigConstants { diff --git a/boost-common/src/main/java/boost/common/runtimes/RuntimeI.java b/boost-common/src/main/java/org/microshed/boost/common/runtimes/RuntimeI.java similarity index 90% rename from boost-common/src/main/java/boost/common/runtimes/RuntimeI.java rename to boost-common/src/main/java/org/microshed/boost/common/runtimes/RuntimeI.java index b59993c9..0a8cf869 100644 --- a/boost-common/src/main/java/boost/common/runtimes/RuntimeI.java +++ b/boost-common/src/main/java/org/microshed/boost/common/runtimes/RuntimeI.java @@ -8,9 +8,9 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.runtimes; +package org.microshed.boost.common.runtimes; -import boost.common.BoostException; +import org.microshed.boost.common.BoostException; public abstract interface RuntimeI { diff --git a/boost-common/src/main/java/boost/common/utils/BoostUtil.java b/boost-common/src/main/java/org/microshed/boost/common/utils/BoostUtil.java similarity index 96% rename from boost-common/src/main/java/boost/common/utils/BoostUtil.java rename to boost-common/src/main/java/org/microshed/boost/common/utils/BoostUtil.java index c9beabe7..5f312420 100644 --- a/boost-common/src/main/java/boost/common/utils/BoostUtil.java +++ b/boost-common/src/main/java/org/microshed/boost/common/utils/BoostUtil.java @@ -9,7 +9,7 @@ * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.common.utils; +package org.microshed.boost.common.utils; import java.io.File; import java.io.FileInputStream; @@ -19,7 +19,7 @@ import java.util.zip.ZipEntry; import java.util.zip.ZipInputStream; -import boost.common.BoostLoggerI; +import org.microshed.boost.common.BoostLoggerI; public class BoostUtil { diff --git a/boost-maven/boost-maven-plugin/src/main/java/boost/maven/plugin/AbstractMojo.java b/boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/plugin/AbstractMojo.java similarity index 93% rename from boost-maven/boost-maven-plugin/src/main/java/boost/maven/plugin/AbstractMojo.java rename to boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/plugin/AbstractMojo.java index 06f3ecd1..06e21bc7 100644 --- a/boost-maven/boost-maven-plugin/src/main/java/boost/maven/plugin/AbstractMojo.java +++ b/boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/plugin/AbstractMojo.java @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.maven.plugin; +package org.microshed.boost.maven.plugin; import static org.twdata.maven.mojoexecutor.MojoExecutor.artifactId; import static org.twdata.maven.mojoexecutor.MojoExecutor.executionEnvironment; @@ -38,16 +38,15 @@ import org.eclipse.aether.RepositorySystem; import org.eclipse.aether.RepositorySystemSession; import org.eclipse.aether.repository.RemoteRepository; +import org.microshed.boost.common.boosters.AbstractBoosterConfig; +import org.microshed.boost.common.config.BoostProperties; +import org.microshed.boost.common.config.BoosterConfigurator; +import org.microshed.boost.common.runtimes.RuntimeI; +import org.microshed.boost.maven.runtimes.RuntimeParams; +import org.microshed.boost.maven.utils.BoostLogger; +import org.microshed.boost.maven.utils.MavenProjectUtil; import org.twdata.maven.mojoexecutor.MojoExecutor.ExecutionEnvironment; -import boost.common.boosters.AbstractBoosterConfig; -import boost.common.config.BoostProperties; -import boost.common.config.BoosterConfigurator; -import boost.common.runtimes.RuntimeI; -import boost.maven.runtimes.RuntimeParams; -import boost.maven.utils.BoostLogger; -import boost.maven.utils.MavenProjectUtil; - public abstract class AbstractMojo extends MojoSupport { private ClassLoader projectClassLoader; diff --git a/boost-maven/boost-maven-plugin/src/main/java/boost/maven/plugin/DebugMojo.java b/boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/plugin/DebugMojo.java similarity index 94% rename from boost-maven/boost-maven-plugin/src/main/java/boost/maven/plugin/DebugMojo.java rename to boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/plugin/DebugMojo.java index 50cbef99..042b39b2 100644 --- a/boost-maven/boost-maven-plugin/src/main/java/boost/maven/plugin/DebugMojo.java +++ b/boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/plugin/DebugMojo.java @@ -8,14 +8,13 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.maven.plugin; +package org.microshed.boost.maven.plugin; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.plugins.annotations.Mojo; import org.apache.maven.plugins.annotations.Parameter; import org.apache.maven.plugins.annotations.ResolutionScope; - -import boost.common.BoostException; +import org.microshed.boost.common.BoostException; /** * Runs the executable archive application (in the console foreground) after a diff --git a/boost-maven/boost-maven-plugin/src/main/java/boost/maven/plugin/PackageMojo.java b/boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/plugin/PackageMojo.java similarity index 94% rename from boost-maven/boost-maven-plugin/src/main/java/boost/maven/plugin/PackageMojo.java rename to boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/plugin/PackageMojo.java index db7ab02d..f3d3dc1f 100644 --- a/boost-maven/boost-maven-plugin/src/main/java/boost/maven/plugin/PackageMojo.java +++ b/boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/plugin/PackageMojo.java @@ -8,13 +8,11 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.maven.plugin; +package org.microshed.boost.maven.plugin; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.plugins.annotations.Mojo; - -import boost.common.BoostException; - +import org.microshed.boost.common.BoostException; import org.apache.maven.plugins.annotations.*; /** diff --git a/boost-maven/boost-maven-plugin/src/main/java/boost/maven/plugin/RunMojo.java b/boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/plugin/RunMojo.java similarity index 94% rename from boost-maven/boost-maven-plugin/src/main/java/boost/maven/plugin/RunMojo.java rename to boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/plugin/RunMojo.java index e119a3f5..8768de1a 100644 --- a/boost-maven/boost-maven-plugin/src/main/java/boost/maven/plugin/RunMojo.java +++ b/boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/plugin/RunMojo.java @@ -8,14 +8,13 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.maven.plugin; +package org.microshed.boost.maven.plugin; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.plugins.annotations.Mojo; import org.apache.maven.plugins.annotations.Parameter; import org.apache.maven.plugins.annotations.ResolutionScope; - -import boost.common.BoostException; +import org.microshed.boost.common.BoostException; /** * Runs the executable archive application (in the console foreground). diff --git a/boost-maven/boost-maven-plugin/src/main/java/boost/maven/plugin/StartMojo.java b/boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/plugin/StartMojo.java similarity index 95% rename from boost-maven/boost-maven-plugin/src/main/java/boost/maven/plugin/StartMojo.java rename to boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/plugin/StartMojo.java index eb780707..1d89eee4 100644 --- a/boost-maven/boost-maven-plugin/src/main/java/boost/maven/plugin/StartMojo.java +++ b/boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/plugin/StartMojo.java @@ -8,14 +8,13 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.maven.plugin; +package org.microshed.boost.maven.plugin; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.plugins.annotations.Mojo; import org.apache.maven.plugins.annotations.Parameter; import org.apache.maven.plugins.annotations.ResolutionScope; - -import boost.common.BoostException; +import org.microshed.boost.common.BoostException; /** * Starts the executable archive application as a background process. diff --git a/boost-maven/boost-maven-plugin/src/main/java/boost/maven/plugin/StopMojo.java b/boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/plugin/StopMojo.java similarity index 93% rename from boost-maven/boost-maven-plugin/src/main/java/boost/maven/plugin/StopMojo.java rename to boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/plugin/StopMojo.java index 993b4d82..1950d733 100644 --- a/boost-maven/boost-maven-plugin/src/main/java/boost/maven/plugin/StopMojo.java +++ b/boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/plugin/StopMojo.java @@ -8,13 +8,12 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.maven.plugin; +package org.microshed.boost.maven.plugin; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.plugins.annotations.Mojo; import org.apache.maven.plugins.annotations.ResolutionScope; - -import boost.common.BoostException; +import org.microshed.boost.common.BoostException; /** * Stops the executable archive application started by the 'start' or 'run' diff --git a/boost-maven/boost-maven-plugin/src/main/java/boost/maven/runtimes/RuntimeParams.java b/boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/runtimes/RuntimeParams.java similarity index 96% rename from boost-maven/boost-maven-plugin/src/main/java/boost/maven/runtimes/RuntimeParams.java rename to boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/runtimes/RuntimeParams.java index ce89127f..9f97e831 100644 --- a/boost-maven/boost-maven-plugin/src/main/java/boost/maven/runtimes/RuntimeParams.java +++ b/boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/runtimes/RuntimeParams.java @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.maven.runtimes; +package org.microshed.boost.maven.runtimes; import java.util.List; import java.util.Properties; @@ -20,10 +20,9 @@ import org.eclipse.aether.RepositorySystem; import org.eclipse.aether.RepositorySystemSession; import org.eclipse.aether.repository.RemoteRepository; +import org.microshed.boost.common.boosters.AbstractBoosterConfig; import org.twdata.maven.mojoexecutor.MojoExecutor.ExecutionEnvironment; -import boost.common.boosters.AbstractBoosterConfig; - public class RuntimeParams { List boosterConfigs; diff --git a/boost-maven/boost-maven-plugin/src/main/java/boost/maven/utils/BoostLogger.java b/boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/utils/BoostLogger.java similarity index 95% rename from boost-maven/boost-maven-plugin/src/main/java/boost/maven/utils/BoostLogger.java rename to boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/utils/BoostLogger.java index 2f433c10..643ab7b5 100644 --- a/boost-maven/boost-maven-plugin/src/main/java/boost/maven/utils/BoostLogger.java +++ b/boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/utils/BoostLogger.java @@ -8,13 +8,12 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.maven.utils; +package org.microshed.boost.maven.utils; import org.apache.maven.plugin.logging.Log; import org.apache.maven.plugin.logging.SystemStreamLog; import org.codehaus.mojo.pluginsupport.MojoSupport; - -import boost.common.BoostLoggerI; +import org.microshed.boost.common.BoostLoggerI; public class BoostLogger implements BoostLoggerI { diff --git a/boost-maven/boost-maven-plugin/src/main/java/boost/maven/utils/MavenProjectUtil.java b/boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/utils/MavenProjectUtil.java similarity index 98% rename from boost-maven/boost-maven-plugin/src/main/java/boost/maven/utils/MavenProjectUtil.java rename to boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/utils/MavenProjectUtil.java index 242b594d..8294276b 100644 --- a/boost-maven/boost-maven-plugin/src/main/java/boost/maven/utils/MavenProjectUtil.java +++ b/boost-maven/boost-maven-plugin/src/main/java/org/microshed/boost/maven/utils/MavenProjectUtil.java @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.maven.utils; +package org.microshed.boost.maven.utils; import java.util.ArrayList; import java.util.HashMap; @@ -27,8 +27,7 @@ import org.eclipse.aether.resolution.ArtifactDescriptorException; import org.eclipse.aether.resolution.ArtifactDescriptorRequest; import org.eclipse.aether.resolution.ArtifactDescriptorResult; - -import boost.common.boosters.AbstractBoosterConfig; +import org.microshed.boost.common.boosters.AbstractBoosterConfig; public class MavenProjectUtil { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/LibertyRuntime.java b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/LibertyRuntime.java similarity index 95% rename from boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/LibertyRuntime.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/LibertyRuntime.java index 97f8a193..c85076a3 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/LibertyRuntime.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/LibertyRuntime.java @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.openliberty; +package org.microshed.boost.runtimes.openliberty; import static org.twdata.maven.mojoexecutor.MojoExecutor.artifactId; import static org.twdata.maven.mojoexecutor.MojoExecutor.configuration; @@ -29,20 +29,19 @@ import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.project.MavenProject; import org.codehaus.plexus.util.xml.Xpp3Dom; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.boosters.AbstractBoosterConfig; +import org.microshed.boost.common.config.BoostProperties; +import org.microshed.boost.common.config.BoosterConfigurator; +import org.microshed.boost.common.config.ConfigConstants; +import org.microshed.boost.common.runtimes.RuntimeI; +import org.microshed.boost.maven.runtimes.RuntimeParams; +import org.microshed.boost.maven.utils.BoostLogger; +import org.microshed.boost.maven.utils.MavenProjectUtil; +import org.microshed.boost.runtimes.openliberty.boosters.LibertyBoosterI; import org.twdata.maven.mojoexecutor.MojoExecutor.Element; import org.twdata.maven.mojoexecutor.MojoExecutor.ExecutionEnvironment; -import boost.common.BoostException; -import boost.common.boosters.AbstractBoosterConfig; -import boost.common.config.BoostProperties; -import boost.common.config.BoosterConfigurator; -import boost.common.config.ConfigConstants; -import boost.common.runtimes.RuntimeI; -import boost.maven.runtimes.RuntimeParams; -import boost.maven.utils.BoostLogger; -import boost.maven.utils.MavenProjectUtil; -import boost.runtimes.openliberty.boosters.LibertyBoosterI; - public class LibertyRuntime implements RuntimeI { private final List boosterConfigs; private final Properties boostProperties; diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/LibertyServerConfigGenerator.java b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/LibertyServerConfigGenerator.java similarity index 97% rename from boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/LibertyServerConfigGenerator.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/LibertyServerConfigGenerator.java index 9788cdaa..de1f4844 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/LibertyServerConfigGenerator.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/LibertyServerConfigGenerator.java @@ -8,9 +8,9 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.openliberty; +package org.microshed.boost.runtimes.openliberty; -import static boost.common.config.ConfigConstants.*; +import static org.microshed.boost.common.config.ConfigConstants.*; import java.io.BufferedReader; import java.io.File; @@ -36,13 +36,13 @@ import javax.xml.transform.dom.DOMSource; import javax.xml.transform.stream.StreamResult; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.JDBCBoosterConfig; +import org.microshed.boost.common.config.BoostProperties; +import org.microshed.boost.common.utils.BoostUtil; import org.w3c.dom.Document; import org.w3c.dom.Element; -import boost.common.BoostLoggerI; -import boost.common.boosters.JDBCBoosterConfig; -import boost.common.config.BoostProperties; -import boost.common.utils.BoostUtil; import io.openliberty.tools.common.plugins.util.OSUtil; /** diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyBeanValidationBoosterConfig.java b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyBeanValidationBoosterConfig.java similarity index 68% rename from boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyBeanValidationBoosterConfig.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyBeanValidationBoosterConfig.java index 71879ed0..3366b787 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyBeanValidationBoosterConfig.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyBeanValidationBoosterConfig.java @@ -8,16 +8,16 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.openliberty.boosters; +package org.microshed.boost.runtimes.openliberty.boosters; -import static boost.common.config.ConfigConstants.*; +import static org.microshed.boost.common.config.ConfigConstants.*; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.BeanValidationBoosterConfig; -import boost.common.config.BoosterConfigParams; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; -import boost.runtimes.openliberty.boosters.LibertyBoosterI; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.BeanValidationBoosterConfig; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.LibertyBoosterI; public class LibertyBeanValidationBoosterConfig extends BeanValidationBoosterConfig implements LibertyBoosterI { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyBoosterI.java b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyBoosterI.java similarity index 79% rename from boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyBoosterI.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyBoosterI.java index 0109b495..d35d5e91 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyBoosterI.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyBoosterI.java @@ -8,10 +8,10 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.openliberty.boosters; +package org.microshed.boost.runtimes.openliberty.boosters; -import boost.common.BoostException; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; public interface LibertyBoosterI { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyCDIBoosterConfig.java b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyCDIBoosterConfig.java similarity index 69% rename from boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyCDIBoosterConfig.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyCDIBoosterConfig.java index d67cc36b..95410319 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyCDIBoosterConfig.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyCDIBoosterConfig.java @@ -8,16 +8,16 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.openliberty.boosters; +package org.microshed.boost.runtimes.openliberty.boosters; -import static boost.common.config.ConfigConstants.*; +import static org.microshed.boost.common.config.ConfigConstants.*; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.CDIBoosterConfig; -import boost.common.config.BoosterConfigParams; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; -import boost.runtimes.openliberty.boosters.LibertyBoosterI; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.CDIBoosterConfig; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.LibertyBoosterI; public class LibertyCDIBoosterConfig extends CDIBoosterConfig implements LibertyBoosterI { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyJAXRSBoosterConfig.java b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyJAXRSBoosterConfig.java similarity index 66% rename from boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyJAXRSBoosterConfig.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyJAXRSBoosterConfig.java index c860ee23..73032a3b 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyJAXRSBoosterConfig.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyJAXRSBoosterConfig.java @@ -8,17 +8,17 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.openliberty.boosters; +package org.microshed.boost.runtimes.openliberty.boosters; -import static boost.common.config.ConfigConstants.JAXRS_20; -import static boost.common.config.ConfigConstants.JAXRS_21; +import static org.microshed.boost.common.config.ConfigConstants.JAXRS_20; +import static org.microshed.boost.common.config.ConfigConstants.JAXRS_21; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.JAXRSBoosterConfig; -import boost.common.config.BoosterConfigParams; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; -import boost.runtimes.openliberty.boosters.LibertyBoosterI; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.JAXRSBoosterConfig; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.LibertyBoosterI; public class LibertyJAXRSBoosterConfig extends JAXRSBoosterConfig implements LibertyBoosterI { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyJDBCBoosterConfig.java b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyJDBCBoosterConfig.java similarity index 76% rename from boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyJDBCBoosterConfig.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyJDBCBoosterConfig.java index d75723ea..f50332bb 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyJDBCBoosterConfig.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyJDBCBoosterConfig.java @@ -8,17 +8,17 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.openliberty.boosters; +package org.microshed.boost.runtimes.openliberty.boosters; -import static boost.common.config.ConfigConstants.*; +import static org.microshed.boost.common.config.ConfigConstants.*; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.JDBCBoosterConfig; -import boost.common.config.BoostProperties; -import boost.common.config.BoosterConfigParams; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; -import boost.runtimes.openliberty.boosters.LibertyBoosterI; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.JDBCBoosterConfig; +import org.microshed.boost.common.config.BoostProperties; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.LibertyBoosterI; public class LibertyJDBCBoosterConfig extends JDBCBoosterConfig implements LibertyBoosterI { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyJPABoosterConfig.java b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyJPABoosterConfig.java similarity index 66% rename from boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyJPABoosterConfig.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyJPABoosterConfig.java index f6f2532d..08bd2e5c 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyJPABoosterConfig.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyJPABoosterConfig.java @@ -8,17 +8,17 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.openliberty.boosters; +package org.microshed.boost.runtimes.openliberty.boosters; -import static boost.common.config.ConfigConstants.JPA_21; -import static boost.common.config.ConfigConstants.JPA_22; +import static org.microshed.boost.common.config.ConfigConstants.JPA_21; +import static org.microshed.boost.common.config.ConfigConstants.JPA_22; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.JPABoosterConfig; -import boost.common.config.BoosterConfigParams; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; -import boost.runtimes.openliberty.boosters.LibertyBoosterI; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.JPABoosterConfig; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.LibertyBoosterI; public class LibertyJPABoosterConfig extends JPABoosterConfig implements LibertyBoosterI { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyJSONBBoosterConfig.java b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyJSONBBoosterConfig.java similarity index 68% rename from boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyJSONBBoosterConfig.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyJSONBBoosterConfig.java index ed3563b8..e04c43b2 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyJSONBBoosterConfig.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyJSONBBoosterConfig.java @@ -8,17 +8,16 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.openliberty.boosters; +package org.microshed.boost.runtimes.openliberty.boosters; -import static boost.common.config.ConfigConstants.*; +import static org.microshed.boost.common.config.ConfigConstants.*; - -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.JSONBBoosterConfig; -import boost.common.config.BoosterConfigParams; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; -import boost.runtimes.openliberty.boosters.LibertyBoosterI; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.JSONBBoosterConfig; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.LibertyBoosterI; public class LibertyJSONBBoosterConfig extends JSONBBoosterConfig implements LibertyBoosterI { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyJSONPBoosterConfig.java b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyJSONPBoosterConfig.java similarity index 70% rename from boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyJSONPBoosterConfig.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyJSONPBoosterConfig.java index 91d3581c..2e72176d 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyJSONPBoosterConfig.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyJSONPBoosterConfig.java @@ -8,16 +8,16 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.openliberty.boosters; +package org.microshed.boost.runtimes.openliberty.boosters; -import static boost.common.config.ConfigConstants.*; +import static org.microshed.boost.common.config.ConfigConstants.*; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.JSONPBoosterConfig; -import boost.common.config.BoosterConfigParams; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; -import boost.runtimes.openliberty.boosters.LibertyBoosterI; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.JSONPBoosterConfig; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.LibertyBoosterI; public class LibertyJSONPBoosterConfig extends JSONPBoosterConfig implements LibertyBoosterI { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPConfigBoosterConfig.java b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPConfigBoosterConfig.java similarity index 67% rename from boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPConfigBoosterConfig.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPConfigBoosterConfig.java index d0b1ad40..00f707da 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPConfigBoosterConfig.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPConfigBoosterConfig.java @@ -8,16 +8,16 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.openliberty.boosters; +package org.microshed.boost.runtimes.openliberty.boosters; -import static boost.common.config.ConfigConstants.MPCONFIG_13; +import static org.microshed.boost.common.config.ConfigConstants.MPCONFIG_13; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.MPConfigBoosterConfig; -import boost.common.config.BoosterConfigParams; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; -import boost.runtimes.openliberty.boosters.LibertyBoosterI; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.MPConfigBoosterConfig; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.LibertyBoosterI; public class LibertyMPConfigBoosterConfig extends MPConfigBoosterConfig implements LibertyBoosterI { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPFaultToleranceBoosterConfig.java b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPFaultToleranceBoosterConfig.java similarity index 70% rename from boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPFaultToleranceBoosterConfig.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPFaultToleranceBoosterConfig.java index f3bb547a..a8d60394 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPFaultToleranceBoosterConfig.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPFaultToleranceBoosterConfig.java @@ -8,16 +8,16 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.openliberty.boosters; +package org.microshed.boost.runtimes.openliberty.boosters; -import static boost.common.config.ConfigConstants.*; +import static org.microshed.boost.common.config.ConfigConstants.*; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.MPFaultToleranceBoosterConfig; -import boost.common.config.BoosterConfigParams; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; -import boost.runtimes.openliberty.boosters.LibertyBoosterI; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.MPFaultToleranceBoosterConfig; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.LibertyBoosterI; public class LibertyMPFaultToleranceBoosterConfig extends MPFaultToleranceBoosterConfig implements LibertyBoosterI { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPHealthBoosterConfig.java b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPHealthBoosterConfig.java similarity index 70% rename from boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPHealthBoosterConfig.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPHealthBoosterConfig.java index 49273b31..8ad8f35e 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPHealthBoosterConfig.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPHealthBoosterConfig.java @@ -8,16 +8,16 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.openliberty.boosters; +package org.microshed.boost.runtimes.openliberty.boosters; -import static boost.common.config.ConfigConstants.*; +import static org.microshed.boost.common.config.ConfigConstants.*; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.MPHealthBoosterConfig; -import boost.common.config.BoosterConfigParams; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; -import boost.runtimes.openliberty.boosters.LibertyBoosterI; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.MPHealthBoosterConfig; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.LibertyBoosterI; public class LibertyMPHealthBoosterConfig extends MPHealthBoosterConfig implements LibertyBoosterI { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPJWTBoosterConfig.java b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPJWTBoosterConfig.java similarity index 68% rename from boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPJWTBoosterConfig.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPJWTBoosterConfig.java index c5bf36c6..7932b88f 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPJWTBoosterConfig.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPJWTBoosterConfig.java @@ -9,17 +9,18 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.openliberty.boosters; +package org.microshed.boost.runtimes.openliberty.boosters; -import static boost.common.config.ConfigConstants.MPJWT_11; +import static org.microshed.boost.common.config.ConfigConstants.MPJWT_11; import java.util.Map; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.MPJWTBoosterConfig; -import boost.common.config.BoosterConfigParams; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; -import boost.runtimes.openliberty.boosters.LibertyBoosterI; + +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.MPJWTBoosterConfig; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.LibertyBoosterI; public class LibertyMPJWTBoosterConfig extends MPJWTBoosterConfig implements LibertyBoosterI { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPMetricsBoosterConfig.java b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPMetricsBoosterConfig.java similarity index 74% rename from boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPMetricsBoosterConfig.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPMetricsBoosterConfig.java index 151516b8..ca6ebb82 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPMetricsBoosterConfig.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPMetricsBoosterConfig.java @@ -8,19 +8,19 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.openliberty.boosters; +package org.microshed.boost.runtimes.openliberty.boosters; -import static boost.common.config.ConfigConstants.*; +import static org.microshed.boost.common.config.ConfigConstants.*; import java.util.HashMap; import java.util.Map; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.MPMetricsBoosterConfig; -import boost.common.config.BoosterConfigParams; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; -import boost.runtimes.openliberty.boosters.LibertyBoosterI; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.MPMetricsBoosterConfig; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.LibertyBoosterI; public class LibertyMPMetricsBoosterConfig extends MPMetricsBoosterConfig implements LibertyBoosterI { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPOpenAPIBoosterConfig.java b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPOpenAPIBoosterConfig.java similarity index 70% rename from boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPOpenAPIBoosterConfig.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPOpenAPIBoosterConfig.java index c38d2a1b..7d9891ca 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPOpenAPIBoosterConfig.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPOpenAPIBoosterConfig.java @@ -8,16 +8,16 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.openliberty.boosters; +package org.microshed.boost.runtimes.openliberty.boosters; -import static boost.common.config.ConfigConstants.*; +import static org.microshed.boost.common.config.ConfigConstants.*; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.MPOpenAPIBoosterConfig; -import boost.common.config.BoosterConfigParams; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; -import boost.runtimes.openliberty.boosters.LibertyBoosterI; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.MPOpenAPIBoosterConfig; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.LibertyBoosterI; public class LibertyMPOpenAPIBoosterConfig extends MPOpenAPIBoosterConfig implements LibertyBoosterI { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPOpenTracingBoosterConfig.java b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPOpenTracingBoosterConfig.java similarity index 72% rename from boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPOpenTracingBoosterConfig.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPOpenTracingBoosterConfig.java index e2ffec14..4b73b721 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPOpenTracingBoosterConfig.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPOpenTracingBoosterConfig.java @@ -8,16 +8,16 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.openliberty.boosters; +package org.microshed.boost.runtimes.openliberty.boosters; -import static boost.common.config.ConfigConstants.*; +import static org.microshed.boost.common.config.ConfigConstants.*; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.MPOpenTracingBoosterConfig; -import boost.common.config.BoosterConfigParams; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; -import boost.runtimes.openliberty.boosters.LibertyBoosterI; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.MPOpenTracingBoosterConfig; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.LibertyBoosterI; public class LibertyMPOpenTracingBoosterConfig extends MPOpenTracingBoosterConfig implements LibertyBoosterI { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPRestClientBoosterConfig.java b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPRestClientBoosterConfig.java similarity index 72% rename from boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPRestClientBoosterConfig.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPRestClientBoosterConfig.java index 34b042ca..a9df31d3 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/boost/runtimes/openliberty/boosters/LibertyMPRestClientBoosterConfig.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/main/java/org/microshed/boost/runtimes/openliberty/boosters/LibertyMPRestClientBoosterConfig.java @@ -8,16 +8,16 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.openliberty.boosters; +package org.microshed.boost.runtimes.openliberty.boosters; -import static boost.common.config.ConfigConstants.*; +import static org.microshed.boost.common.config.ConfigConstants.*; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.MPRestClientBoosterConfig; -import boost.common.config.BoosterConfigParams; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; -import boost.runtimes.openliberty.boosters.LibertyBoosterI; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.MPRestClientBoosterConfig; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.LibertyBoosterI; public class LibertyMPRestClientBoosterConfig extends MPRestClientBoosterConfig implements LibertyBoosterI { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/main/resources/META-INF/services/boost.common.runtimes.RuntimeI b/boost-maven/boost-runtimes/runtime-openliberty/src/main/resources/META-INF/services/boost.common.runtimes.RuntimeI deleted file mode 100644 index 159f4bd2..00000000 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/main/resources/META-INF/services/boost.common.runtimes.RuntimeI +++ /dev/null @@ -1 +0,0 @@ -boost.runtimes.openliberty.LibertyRuntime \ No newline at end of file diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/main/resources/META-INF/services/org.microshed.boost.common.runtimes.RuntimeI b/boost-maven/boost-runtimes/runtime-openliberty/src/main/resources/META-INF/services/org.microshed.boost.common.runtimes.RuntimeI new file mode 100644 index 00000000..de774055 --- /dev/null +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/main/resources/META-INF/services/org.microshed.boost.common.runtimes.RuntimeI @@ -0,0 +1 @@ +org.microshed.boost.runtimes.openliberty.LibertyRuntime \ No newline at end of file diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/BeanValidationBoosterTest.java b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/BeanValidationBoosterTest.java similarity index 86% rename from boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/BeanValidationBoosterTest.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/BeanValidationBoosterTest.java index efe2c0a4..0cf12fe7 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/BeanValidationBoosterTest.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/BeanValidationBoosterTest.java @@ -9,10 +9,10 @@ * IBM Corporation - initial API and implementation *******************************************************************************/ -package io.openliberty.boost.runtimes.boosters; +package org.microshed.boost.runtimes.boosters; -import static boost.common.config.ConfigConstants.*; import static org.junit.Assert.assertTrue; +import static org.microshed.boost.common.config.ConfigConstants.*; import java.util.Map; import java.util.Properties; @@ -21,14 +21,13 @@ import org.junit.Test; import org.junit.contrib.java.lang.system.RestoreSystemProperties; import org.junit.rules.TemporaryFolder; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; - -import boost.common.BoostLoggerI; -import boost.common.config.BoosterConfigParams; -import io.openliberty.boost.runtimes.utils.BoosterUtil; -import io.openliberty.boost.runtimes.utils.CommonLogger; -import io.openliberty.boost.runtimes.utils.ConfigFileUtils; -import boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.runtimes.utils.BoosterUtil; +import org.microshed.boost.runtimes.utils.CommonLogger; +import org.microshed.boost.runtimes.utils.ConfigFileUtils; public class BeanValidationBoosterTest { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/CDIBoosterTest.java b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/CDIBoosterTest.java similarity index 86% rename from boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/CDIBoosterTest.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/CDIBoosterTest.java index 1c296119..1a8926a4 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/CDIBoosterTest.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/CDIBoosterTest.java @@ -9,10 +9,10 @@ * IBM Corporation - initial API and implementation *******************************************************************************/ -package io.openliberty.boost.runtimes.boosters; +package org.microshed.boost.runtimes.boosters; -import static boost.common.config.ConfigConstants.*; import static org.junit.Assert.assertTrue; +import static org.microshed.boost.common.config.ConfigConstants.*; import java.util.Map; import java.util.Properties; @@ -21,14 +21,13 @@ import org.junit.Test; import org.junit.contrib.java.lang.system.RestoreSystemProperties; import org.junit.rules.TemporaryFolder; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; - -import boost.common.BoostLoggerI; -import boost.common.config.BoosterConfigParams; -import io.openliberty.boost.runtimes.utils.BoosterUtil; -import io.openliberty.boost.runtimes.utils.CommonLogger; -import io.openliberty.boost.runtimes.utils.ConfigFileUtils; -import boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.runtimes.utils.BoosterUtil; +import org.microshed.boost.runtimes.utils.CommonLogger; +import org.microshed.boost.runtimes.utils.ConfigFileUtils; public class CDIBoosterTest { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/JAXRSBoosterTest.java b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/JAXRSBoosterTest.java similarity index 86% rename from boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/JAXRSBoosterTest.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/JAXRSBoosterTest.java index f1b05c5a..9dc21adc 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/JAXRSBoosterTest.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/JAXRSBoosterTest.java @@ -9,10 +9,10 @@ * IBM Corporation - initial API and implementation *******************************************************************************/ -package io.openliberty.boost.runtimes.boosters; +package org.microshed.boost.runtimes.boosters; -import static boost.common.config.ConfigConstants.*; import static org.junit.Assert.assertTrue; +import static org.microshed.boost.common.config.ConfigConstants.*; import java.util.Map; import java.util.Properties; @@ -21,14 +21,13 @@ import org.junit.Test; import org.junit.contrib.java.lang.system.RestoreSystemProperties; import org.junit.rules.TemporaryFolder; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; - -import boost.common.BoostLoggerI; -import boost.common.config.BoosterConfigParams; -import io.openliberty.boost.runtimes.utils.BoosterUtil; -import io.openliberty.boost.runtimes.utils.CommonLogger; -import io.openliberty.boost.runtimes.utils.ConfigFileUtils; -import boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.runtimes.utils.BoosterUtil; +import org.microshed.boost.runtimes.utils.CommonLogger; +import org.microshed.boost.runtimes.utils.ConfigFileUtils; public class JAXRSBoosterTest { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/JDBCBoosterTest.java b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/JDBCBoosterTest.java similarity index 93% rename from boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/JDBCBoosterTest.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/JDBCBoosterTest.java index 31b6020c..52cdb244 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/JDBCBoosterTest.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/JDBCBoosterTest.java @@ -9,10 +9,10 @@ * IBM Corporation - initial API and implementation *******************************************************************************/ -package io.openliberty.boost.runtimes.boosters; +package org.microshed.boost.runtimes.boosters; -import static boost.common.config.ConfigConstants.*; import static org.junit.Assert.assertTrue; +import static org.microshed.boost.common.config.ConfigConstants.*; import java.io.IOException; import java.lang.reflect.InvocationTargetException; @@ -25,16 +25,15 @@ import org.junit.Test; import org.junit.contrib.java.lang.system.RestoreSystemProperties; import org.junit.rules.TemporaryFolder; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; - -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.config.BoostProperties; -import boost.common.config.BoosterConfigParams; -import io.openliberty.boost.runtimes.utils.BoosterUtil; -import io.openliberty.boost.runtimes.utils.CommonLogger; -import io.openliberty.boost.runtimes.utils.ConfigFileUtils; -import boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.config.BoostProperties; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.runtimes.utils.BoosterUtil; +import org.microshed.boost.runtimes.utils.CommonLogger; +import org.microshed.boost.runtimes.utils.ConfigFileUtils; public class JDBCBoosterTest { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/JSONBBoosterTest.java b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/JSONBBoosterTest.java similarity index 80% rename from boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/JSONBBoosterTest.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/JSONBBoosterTest.java index e1f40f46..afbbb9e9 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/JSONBBoosterTest.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/JSONBBoosterTest.java @@ -9,10 +9,10 @@ * IBM Corporation - initial API and implementation *******************************************************************************/ -package io.openliberty.boost.runtimes.boosters; +package org.microshed.boost.runtimes.boosters; -import static boost.common.config.ConfigConstants.*; import static org.junit.Assert.assertTrue; +import static org.microshed.boost.common.config.ConfigConstants.*; import java.util.Map; import java.util.Properties; @@ -21,14 +21,13 @@ import org.junit.Test; import org.junit.contrib.java.lang.system.RestoreSystemProperties; import org.junit.rules.TemporaryFolder; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; - -import boost.common.BoostLoggerI; -import boost.common.config.BoosterConfigParams; -import io.openliberty.boost.runtimes.utils.BoosterUtil; -import io.openliberty.boost.runtimes.utils.CommonLogger; -import io.openliberty.boost.runtimes.utils.ConfigFileUtils; -import boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.runtimes.utils.BoosterUtil; +import org.microshed.boost.runtimes.utils.CommonLogger; +import org.microshed.boost.runtimes.utils.ConfigFileUtils; public class JSONBBoosterTest { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/JSONPBoosterTest.java b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/JSONPBoosterTest.java similarity index 86% rename from boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/JSONPBoosterTest.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/JSONPBoosterTest.java index bcd4ff7e..7852b3b4 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/JSONPBoosterTest.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/JSONPBoosterTest.java @@ -9,10 +9,10 @@ * IBM Corporation - initial API and implementation *******************************************************************************/ -package io.openliberty.boost.runtimes.boosters; +package org.microshed.boost.runtimes.boosters; -import static boost.common.config.ConfigConstants.*; import static org.junit.Assert.assertTrue; +import static org.microshed.boost.common.config.ConfigConstants.*; import java.util.Map; import java.util.Properties; @@ -21,14 +21,13 @@ import org.junit.Test; import org.junit.contrib.java.lang.system.RestoreSystemProperties; import org.junit.rules.TemporaryFolder; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; - -import boost.common.BoostLoggerI; -import boost.common.config.BoosterConfigParams; -import io.openliberty.boost.runtimes.utils.BoosterUtil; -import io.openliberty.boost.runtimes.utils.CommonLogger; -import io.openliberty.boost.runtimes.utils.ConfigFileUtils; -import boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.runtimes.utils.BoosterUtil; +import org.microshed.boost.runtimes.utils.CommonLogger; +import org.microshed.boost.runtimes.utils.ConfigFileUtils; public class JSONPBoosterTest { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPConfigBoosterTest.java b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPConfigBoosterTest.java similarity index 81% rename from boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPConfigBoosterTest.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPConfigBoosterTest.java index 35dc683f..5f498e5a 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPConfigBoosterTest.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPConfigBoosterTest.java @@ -9,10 +9,10 @@ * IBM Corporation - initial API and implementation *******************************************************************************/ -package io.openliberty.boost.runtimes.boosters; +package org.microshed.boost.runtimes.boosters; -import static boost.common.config.ConfigConstants.*; import static org.junit.Assert.assertTrue; +import static org.microshed.boost.common.config.ConfigConstants.*; import java.util.Map; import java.util.Properties; @@ -21,14 +21,13 @@ import org.junit.Test; import org.junit.contrib.java.lang.system.RestoreSystemProperties; import org.junit.rules.TemporaryFolder; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; - -import boost.common.BoostLoggerI; -import boost.common.config.BoosterConfigParams; -import io.openliberty.boost.runtimes.utils.BoosterUtil; -import io.openliberty.boost.runtimes.utils.CommonLogger; -import io.openliberty.boost.runtimes.utils.ConfigFileUtils; -import boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.runtimes.utils.BoosterUtil; +import org.microshed.boost.runtimes.utils.CommonLogger; +import org.microshed.boost.runtimes.utils.ConfigFileUtils; public class MPConfigBoosterTest { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPFaultToleranceBoosterTest.java b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPFaultToleranceBoosterTest.java similarity index 87% rename from boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPFaultToleranceBoosterTest.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPFaultToleranceBoosterTest.java index c7137a4f..d5fae78f 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPFaultToleranceBoosterTest.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPFaultToleranceBoosterTest.java @@ -9,10 +9,10 @@ * IBM Corporation - initial API and implementation *******************************************************************************/ -package io.openliberty.boost.runtimes.boosters; +package org.microshed.boost.runtimes.boosters; -import static boost.common.config.ConfigConstants.*; import static org.junit.Assert.assertTrue; +import static org.microshed.boost.common.config.ConfigConstants.*; import java.util.Map; import java.util.Properties; @@ -21,14 +21,13 @@ import org.junit.Test; import org.junit.contrib.java.lang.system.RestoreSystemProperties; import org.junit.rules.TemporaryFolder; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; - -import boost.common.BoostLoggerI; -import boost.common.config.BoosterConfigParams; -import io.openliberty.boost.runtimes.utils.BoosterUtil; -import io.openliberty.boost.runtimes.utils.CommonLogger; -import io.openliberty.boost.runtimes.utils.ConfigFileUtils; -import boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.runtimes.utils.BoosterUtil; +import org.microshed.boost.runtimes.utils.CommonLogger; +import org.microshed.boost.runtimes.utils.ConfigFileUtils; public class MPFaultToleranceBoosterTest { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPHealthBoosterTest.java b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPHealthBoosterTest.java similarity index 86% rename from boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPHealthBoosterTest.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPHealthBoosterTest.java index 0772f4f6..944e37cd 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPHealthBoosterTest.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPHealthBoosterTest.java @@ -9,10 +9,10 @@ * IBM Corporation - initial API and implementation *******************************************************************************/ -package io.openliberty.boost.runtimes.boosters; +package org.microshed.boost.runtimes.boosters; -import static boost.common.config.ConfigConstants.*; import static org.junit.Assert.assertTrue; +import static org.microshed.boost.common.config.ConfigConstants.*; import java.util.Map; import java.util.Properties; @@ -21,14 +21,13 @@ import org.junit.Test; import org.junit.contrib.java.lang.system.RestoreSystemProperties; import org.junit.rules.TemporaryFolder; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; - -import boost.common.BoostLoggerI; -import boost.common.config.BoosterConfigParams; -import io.openliberty.boost.runtimes.utils.BoosterUtil; -import io.openliberty.boost.runtimes.utils.CommonLogger; -import io.openliberty.boost.runtimes.utils.ConfigFileUtils; -import boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.runtimes.utils.BoosterUtil; +import org.microshed.boost.runtimes.utils.CommonLogger; +import org.microshed.boost.runtimes.utils.ConfigFileUtils; public class MPHealthBoosterTest { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPMetricsBoosterTest.java b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPMetricsBoosterTest.java similarity index 86% rename from boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPMetricsBoosterTest.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPMetricsBoosterTest.java index 18f06fc9..953793df 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPMetricsBoosterTest.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPMetricsBoosterTest.java @@ -9,10 +9,10 @@ * IBM Corporation - initial API and implementation *******************************************************************************/ -package io.openliberty.boost.runtimes.boosters; +package org.microshed.boost.runtimes.boosters; -import static boost.common.config.ConfigConstants.*; import static org.junit.Assert.assertTrue; +import static org.microshed.boost.common.config.ConfigConstants.*; import java.util.Map; import java.util.Properties; @@ -21,14 +21,13 @@ import org.junit.Test; import org.junit.contrib.java.lang.system.RestoreSystemProperties; import org.junit.rules.TemporaryFolder; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; - -import boost.common.BoostLoggerI; -import boost.common.config.BoosterConfigParams; -import io.openliberty.boost.runtimes.utils.BoosterUtil; -import io.openliberty.boost.runtimes.utils.CommonLogger; -import io.openliberty.boost.runtimes.utils.ConfigFileUtils; -import boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.runtimes.utils.BoosterUtil; +import org.microshed.boost.runtimes.utils.CommonLogger; +import org.microshed.boost.runtimes.utils.ConfigFileUtils; public class MPMetricsBoosterTest { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPOpenAPIBoosterTest.java b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPOpenAPIBoosterTest.java similarity index 86% rename from boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPOpenAPIBoosterTest.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPOpenAPIBoosterTest.java index 4679afea..fc33a4e5 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPOpenAPIBoosterTest.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPOpenAPIBoosterTest.java @@ -9,10 +9,10 @@ * IBM Corporation - initial API and implementation *******************************************************************************/ -package io.openliberty.boost.runtimes.boosters; +package org.microshed.boost.runtimes.boosters; -import static boost.common.config.ConfigConstants.*; import static org.junit.Assert.assertTrue; +import static org.microshed.boost.common.config.ConfigConstants.*; import java.util.Map; import java.util.Properties; @@ -21,14 +21,13 @@ import org.junit.Test; import org.junit.contrib.java.lang.system.RestoreSystemProperties; import org.junit.rules.TemporaryFolder; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; - -import boost.common.BoostLoggerI; -import boost.common.config.BoosterConfigParams; -import io.openliberty.boost.runtimes.utils.BoosterUtil; -import io.openliberty.boost.runtimes.utils.CommonLogger; -import io.openliberty.boost.runtimes.utils.ConfigFileUtils; -import boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.runtimes.utils.BoosterUtil; +import org.microshed.boost.runtimes.utils.CommonLogger; +import org.microshed.boost.runtimes.utils.ConfigFileUtils; public class MPOpenAPIBoosterTest { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPOpenTracingBoosterTest.java b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPOpenTracingBoosterTest.java similarity index 90% rename from boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPOpenTracingBoosterTest.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPOpenTracingBoosterTest.java index eb5991ed..9ee5d7e6 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPOpenTracingBoosterTest.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPOpenTracingBoosterTest.java @@ -9,10 +9,10 @@ * IBM Corporation - initial API and implementation *******************************************************************************/ -package io.openliberty.boost.runtimes.boosters; +package org.microshed.boost.runtimes.boosters; -import static boost.common.config.ConfigConstants.*; import static org.junit.Assert.assertTrue; +import static org.microshed.boost.common.config.ConfigConstants.*; import java.util.Map; import java.util.Properties; @@ -21,14 +21,13 @@ import org.junit.Test; import org.junit.contrib.java.lang.system.RestoreSystemProperties; import org.junit.rules.TemporaryFolder; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; - -import boost.common.BoostLoggerI; -import boost.common.config.BoosterConfigParams; -import io.openliberty.boost.runtimes.utils.BoosterUtil; -import io.openliberty.boost.runtimes.utils.CommonLogger; -import io.openliberty.boost.runtimes.utils.ConfigFileUtils; -import boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.runtimes.utils.BoosterUtil; +import org.microshed.boost.runtimes.utils.CommonLogger; +import org.microshed.boost.runtimes.utils.ConfigFileUtils; public class MPOpenTracingBoosterTest { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPRestClientBoosterTest.java b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPRestClientBoosterTest.java similarity index 90% rename from boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPRestClientBoosterTest.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPRestClientBoosterTest.java index 0a3e9045..b3aba71b 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/boosters/MPRestClientBoosterTest.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/boosters/MPRestClientBoosterTest.java @@ -9,10 +9,10 @@ * IBM Corporation - initial API and implementation *******************************************************************************/ -package io.openliberty.boost.runtimes.boosters; +package org.microshed.boost.runtimes.boosters; -import static boost.common.config.ConfigConstants.*; import static org.junit.Assert.assertTrue; +import static org.microshed.boost.common.config.ConfigConstants.*; import java.util.Map; import java.util.Properties; @@ -21,14 +21,13 @@ import org.junit.Test; import org.junit.contrib.java.lang.system.RestoreSystemProperties; import org.junit.rules.TemporaryFolder; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; - -import boost.common.BoostLoggerI; -import boost.common.config.BoosterConfigParams; -import io.openliberty.boost.runtimes.utils.BoosterUtil; -import io.openliberty.boost.runtimes.utils.CommonLogger; -import io.openliberty.boost.runtimes.utils.ConfigFileUtils; -import boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.*; +import org.microshed.boost.runtimes.utils.BoosterUtil; +import org.microshed.boost.runtimes.utils.CommonLogger; +import org.microshed.boost.runtimes.utils.ConfigFileUtils; public class MPRestClientBoosterTest { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/config/LibertyServerConfigGeneratorTest.java b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/config/LibertyServerConfigGeneratorTest.java similarity index 96% rename from boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/config/LibertyServerConfigGeneratorTest.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/config/LibertyServerConfigGeneratorTest.java index 96e853ae..f55e98b3 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/config/LibertyServerConfigGeneratorTest.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/config/LibertyServerConfigGeneratorTest.java @@ -8,10 +8,12 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package io.openliberty.boost.runtimes.config; +package org.microshed.boost.runtimes.config; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; +import static org.microshed.boost.common.config.ConfigConstants.*; +import static org.microshed.boost.runtimes.utils.DOMUtils.getDirectChildrenByTag; import java.io.File; import java.io.IOException; @@ -26,24 +28,20 @@ import org.junit.Rule; import org.junit.Test; import org.junit.rules.TemporaryFolder; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.JDBCBoosterConfig; +import org.microshed.boost.common.config.BoostProperties; +import org.microshed.boost.common.config.BoosterConfigParams; +import org.microshed.boost.common.utils.BoostUtil; +import org.microshed.boost.runtimes.openliberty.LibertyServerConfigGenerator; +import org.microshed.boost.runtimes.openliberty.boosters.LibertyJDBCBoosterConfig; +import org.microshed.boost.runtimes.utils.BoosterUtil; +import org.microshed.boost.runtimes.utils.CommonLogger; +import org.microshed.boost.runtimes.utils.ConfigFileUtils; import org.w3c.dom.Document; import org.w3c.dom.Element; -import boost.runtimes.openliberty.LibertyServerConfigGenerator; - -import boost.common.config.BoostProperties; -import boost.common.config.BoosterConfigParams; -import boost.common.utils.BoostUtil; -import io.openliberty.boost.runtimes.utils.CommonLogger; -import io.openliberty.boost.runtimes.utils.ConfigFileUtils; -import boost.common.BoostLoggerI; -import boost.common.boosters.JDBCBoosterConfig; - -import static boost.common.config.ConfigConstants.*; -import static io.openliberty.boost.runtimes.utils.DOMUtils.getDirectChildrenByTag; -import boost.runtimes.openliberty.boosters.LibertyJDBCBoosterConfig; import java.util.*; -import io.openliberty.boost.runtimes.utils.BoosterUtil; public class LibertyServerConfigGeneratorTest { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/utils/BoosterUtil.java b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/utils/BoosterUtil.java similarity index 83% rename from boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/utils/BoosterUtil.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/utils/BoosterUtil.java index f1dcb78d..6e2cc8fe 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/utils/BoosterUtil.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/utils/BoosterUtil.java @@ -9,14 +9,14 @@ * IBM Corporation - initial API and implementation *******************************************************************************/ -package io.openliberty.boost.runtimes.utils; +package org.microshed.boost.runtimes.utils; import java.util.HashMap; import java.util.Map; -import boost.common.BoostException; -import boost.common.boosters.AbstractBoosterConfig; -import boost.common.boosters.JDBCBoosterConfig; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.boosters.AbstractBoosterConfig; +import org.microshed.boost.common.boosters.JDBCBoosterConfig; public class BoosterUtil { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/utils/CommonLogger.java b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/utils/CommonLogger.java similarity index 94% rename from boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/utils/CommonLogger.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/utils/CommonLogger.java index 70633870..0008dd20 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/utils/CommonLogger.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/utils/CommonLogger.java @@ -9,9 +9,9 @@ * IBM Corporation - initial API and implementation *******************************************************************************/ -package io.openliberty.boost.runtimes.utils; +package org.microshed.boost.runtimes.utils; -import boost.common.BoostLoggerI; +import org.microshed.boost.common.BoostLoggerI; public class CommonLogger implements BoostLoggerI { diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/utils/ConfigFileUtils.java b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/utils/ConfigFileUtils.java similarity index 95% rename from boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/utils/ConfigFileUtils.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/utils/ConfigFileUtils.java index 8277b22a..51373ba8 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/utils/ConfigFileUtils.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/utils/ConfigFileUtils.java @@ -8,10 +8,10 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package io.openliberty.boost.runtimes.utils; +package org.microshed.boost.runtimes.utils; -import static io.openliberty.boost.runtimes.utils.DOMUtils.getDirectChildrenByTag; import static org.junit.Assert.fail; +import static org.microshed.boost.runtimes.utils.DOMUtils.getDirectChildrenByTag; import java.io.BufferedReader; import java.io.File; diff --git a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/utils/DOMUtils.java b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/utils/DOMUtils.java similarity index 96% rename from boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/utils/DOMUtils.java rename to boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/utils/DOMUtils.java index 796ca325..2732ad75 100644 --- a/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/io/openliberty/boost/runtimes/utils/DOMUtils.java +++ b/boost-maven/boost-runtimes/runtime-openliberty/src/test/java/org/microshed/boost/runtimes/utils/DOMUtils.java @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package io.openliberty.boost.runtimes.utils; +package org.microshed.boost.runtimes.utils; import java.util.ArrayList; import java.util.List; diff --git a/boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/TomeeRuntime.java b/boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/TomeeRuntime.java similarity index 94% rename from boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/TomeeRuntime.java rename to boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/TomeeRuntime.java index 7599e760..641ded68 100644 --- a/boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/TomeeRuntime.java +++ b/boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/TomeeRuntime.java @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.tomee; +package org.microshed.boost.runtimes.tomee; import static org.twdata.maven.mojoexecutor.MojoExecutor.artifactId; import static org.twdata.maven.mojoexecutor.MojoExecutor.configuration; @@ -25,16 +25,15 @@ import org.apache.maven.model.Plugin; import org.apache.maven.plugin.MojoExecutionException; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.boosters.AbstractBoosterConfig; +import org.microshed.boost.common.config.BoostProperties; +import org.microshed.boost.common.config.BoosterConfigurator; +import org.microshed.boost.common.runtimes.RuntimeI; +import org.microshed.boost.maven.runtimes.RuntimeParams; +import org.microshed.boost.maven.utils.BoostLogger; import org.twdata.maven.mojoexecutor.MojoExecutor.ExecutionEnvironment; -import boost.common.BoostException; -import boost.common.boosters.AbstractBoosterConfig; -import boost.common.config.BoostProperties; -import boost.common.config.BoosterConfigurator; -import boost.common.runtimes.RuntimeI; -import boost.maven.runtimes.RuntimeParams; -import boost.maven.utils.BoostLogger; - public class TomeeRuntime implements RuntimeI { private final List boosterConfigs; private final Properties boostProperties; diff --git a/boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/TomeeServerConfigGenerator.java b/boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/TomeeServerConfigGenerator.java similarity index 97% rename from boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/TomeeServerConfigGenerator.java rename to boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/TomeeServerConfigGenerator.java index 867729ec..ca790b15 100644 --- a/boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/TomeeServerConfigGenerator.java +++ b/boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/TomeeServerConfigGenerator.java @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.tomee; +package org.microshed.boost.runtimes.tomee; import java.io.BufferedReader; import java.io.BufferedWriter; @@ -31,19 +31,18 @@ import javax.xml.transform.dom.DOMSource; import javax.xml.transform.stream.StreamResult; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.AbstractBoosterConfig; +import org.microshed.boost.common.boosters.JDBCBoosterConfig; +import org.microshed.boost.common.config.BoostProperties; +import org.microshed.boost.common.config.ConfigConstants; +import org.microshed.boost.common.utils.BoostUtil; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.Node; import org.w3c.dom.NodeList; import org.w3c.dom.Text; -import boost.common.BoostLoggerI; -import boost.common.boosters.AbstractBoosterConfig; -import boost.common.boosters.JDBCBoosterConfig; -import boost.common.config.BoostProperties; -import boost.common.config.ConfigConstants; -import boost.common.utils.BoostUtil; - /** * Create a Liberty server.xml * diff --git a/boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/boosters/TomeeBoosterI.java b/boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/boosters/TomeeBoosterI.java similarity index 92% rename from boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/boosters/TomeeBoosterI.java rename to boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/boosters/TomeeBoosterI.java index 3eeddabd..6e9352b0 100644 --- a/boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/boosters/TomeeBoosterI.java +++ b/boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/boosters/TomeeBoosterI.java @@ -8,7 +8,7 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.tomee.boosters; +package org.microshed.boost.runtimes.tomee.boosters; import java.util.List; diff --git a/boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/boosters/TomeeMPConfigBoosterConfig.java b/boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/boosters/TomeeMPConfigBoosterConfig.java similarity index 80% rename from boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/boosters/TomeeMPConfigBoosterConfig.java rename to boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/boosters/TomeeMPConfigBoosterConfig.java index 2cd0c020..839a1124 100644 --- a/boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/boosters/TomeeMPConfigBoosterConfig.java +++ b/boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/boosters/TomeeMPConfigBoosterConfig.java @@ -8,14 +8,14 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.tomee.boosters; +package org.microshed.boost.runtimes.tomee.boosters; import java.util.List; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.MPConfigBoosterConfig; -import boost.common.config.BoosterConfigParams; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.MPConfigBoosterConfig; +import org.microshed.boost.common.config.BoosterConfigParams; public class TomeeMPConfigBoosterConfig extends MPConfigBoosterConfig { diff --git a/boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/boosters/TomeeMPHealthBoosterConfig.java b/boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/boosters/TomeeMPHealthBoosterConfig.java similarity index 80% rename from boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/boosters/TomeeMPHealthBoosterConfig.java rename to boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/boosters/TomeeMPHealthBoosterConfig.java index 0d7dd921..d04367bd 100644 --- a/boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/boosters/TomeeMPHealthBoosterConfig.java +++ b/boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/boosters/TomeeMPHealthBoosterConfig.java @@ -8,14 +8,14 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.tomee.boosters; +package org.microshed.boost.runtimes.tomee.boosters; import java.util.List; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.MPHealthBoosterConfig; -import boost.common.config.BoosterConfigParams; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.MPHealthBoosterConfig; +import org.microshed.boost.common.config.BoosterConfigParams; public class TomeeMPHealthBoosterConfig extends MPHealthBoosterConfig implements TomeeBoosterI { diff --git a/boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/boosters/TomeeMPJWTBoosterConfig.java b/boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/boosters/TomeeMPJWTBoosterConfig.java similarity index 80% rename from boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/boosters/TomeeMPJWTBoosterConfig.java rename to boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/boosters/TomeeMPJWTBoosterConfig.java index b17a295e..7cedc544 100644 --- a/boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/boosters/TomeeMPJWTBoosterConfig.java +++ b/boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/boosters/TomeeMPJWTBoosterConfig.java @@ -8,15 +8,15 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.tomee.boosters; +package org.microshed.boost.runtimes.tomee.boosters; import java.util.List; import java.util.Map; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.MPJWTBoosterConfig; -import boost.common.config.BoosterConfigParams; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.MPJWTBoosterConfig; +import org.microshed.boost.common.config.BoosterConfigParams; public class TomeeMPJWTBoosterConfig extends MPJWTBoosterConfig { diff --git a/boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/boosters/TomeeMPRestClientBoosterConfig.java b/boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/boosters/TomeeMPRestClientBoosterConfig.java similarity index 79% rename from boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/boosters/TomeeMPRestClientBoosterConfig.java rename to boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/boosters/TomeeMPRestClientBoosterConfig.java index 2ed1ea22..f9e295c0 100644 --- a/boost-maven/boost-runtimes/runtime-tomee/src/main/java/boost/runtimes/tomee/boosters/TomeeMPRestClientBoosterConfig.java +++ b/boost-maven/boost-runtimes/runtime-tomee/src/main/java/org/microshed/boost/runtimes/tomee/boosters/TomeeMPRestClientBoosterConfig.java @@ -8,14 +8,14 @@ * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ -package boost.runtimes.tomee.boosters; +package org.microshed.boost.runtimes.tomee.boosters; import java.util.List; -import boost.common.BoostException; -import boost.common.BoostLoggerI; -import boost.common.boosters.MPRestClientBoosterConfig; -import boost.common.config.BoosterConfigParams; +import org.microshed.boost.common.BoostException; +import org.microshed.boost.common.BoostLoggerI; +import org.microshed.boost.common.boosters.MPRestClientBoosterConfig; +import org.microshed.boost.common.config.BoosterConfigParams; public class TomeeMPRestClientBoosterConfig extends MPRestClientBoosterConfig { diff --git a/boost-maven/boost-runtimes/runtime-tomee/src/main/resources/META-INF/services/boost.common.runtimes.RuntimeI b/boost-maven/boost-runtimes/runtime-tomee/src/main/resources/META-INF/services/boost.common.runtimes.RuntimeI deleted file mode 100644 index 483c26bc..00000000 --- a/boost-maven/boost-runtimes/runtime-tomee/src/main/resources/META-INF/services/boost.common.runtimes.RuntimeI +++ /dev/null @@ -1 +0,0 @@ -boost.runtimes.tomee.TomeeRuntime \ No newline at end of file diff --git a/boost-maven/boost-runtimes/runtime-tomee/src/main/resources/META-INF/services/org.microshed.boost.common.runtimes.RuntimeI b/boost-maven/boost-runtimes/runtime-tomee/src/main/resources/META-INF/services/org.microshed.boost.common.runtimes.RuntimeI new file mode 100644 index 00000000..8504d970 --- /dev/null +++ b/boost-maven/boost-runtimes/runtime-tomee/src/main/resources/META-INF/services/org.microshed.boost.common.runtimes.RuntimeI @@ -0,0 +1 @@ +org.microshed.boost.runtimes.tomee.TomeeRuntime \ No newline at end of file From 64837420f5c6194c8e5989ab68b554e1906c0861 Mon Sep 17 00:00:00 2001 From: Scott Kurz Date: Mon, 16 Sep 2019 17:21:11 -0400 Subject: [PATCH 2/2] Update configurator reflection call; remove SpringBoot doc Signed-off-by: Scott Kurz --- .../common/config/BoosterConfigurator.java | 2 +- boost-maven/SpringBoot.md | 89 ------------------- .../src/it/test-jdbc/pom.xml | 2 +- 3 files changed, 2 insertions(+), 91 deletions(-) delete mode 100644 boost-maven/SpringBoot.md diff --git a/boost-common/src/main/java/org/microshed/boost/common/config/BoosterConfigurator.java b/boost-common/src/main/java/org/microshed/boost/common/config/BoosterConfigurator.java index a5e3c6f0..554e86ea 100644 --- a/boost-common/src/main/java/org/microshed/boost/common/config/BoosterConfigurator.java +++ b/boost-common/src/main/java/org/microshed/boost/common/config/BoosterConfigurator.java @@ -68,7 +68,7 @@ public static List getBoosterConfigs(List jars, Cla List boosterConfigList = new ArrayList(); - Reflections reflections = new Reflections("boost.common.boosters"); + Reflections reflections = new Reflections("org.microshed.boost.common.boosters"); Set> allClasses = reflections.getSubTypesOf(AbstractBoosterConfig.class); for (Class boosterClass : allClasses) { diff --git a/boost-maven/SpringBoot.md b/boost-maven/SpringBoot.md deleted file mode 100644 index 46fb5a94..00000000 --- a/boost-maven/SpringBoot.md +++ /dev/null @@ -1,89 +0,0 @@ -# Boost Maven Plugin Prototype - -### What is Boost? - -This is a prototype Maven plugin to package a Spring Boot application with Liberty. - -When added to your pom.xml, the plugin will - -1. Install Open Liberty. -2. Create an Open Liberty server. -3. Thin the Spring Boot project application. -4. Install the application to the server. -5. Install and add appropriate Liberty features to the server configuration. -6. Package the server and application into a runnable jar. -7. Create a Spring Boot application Docker image that uses Liberty. - - -### Build Liberty Boost Plugin - -1. `git clone git@github.com:OpenLiberty/boost-common.git` -2. `cd boost-common` -3. `mvn clean install` -4. `git clone git@github.com:OpenLiberty/boost-maven.git` -5. `cd boost-maven` -6. `mvn clean install` (To run integration tests, add the -Pit parameter) - -### Use the Liberty Boost plugin in your Spring Boot Maven project - -#### Try it! - -Kick the tires of Boost with zero configuration: - -* Produce a Liberty uber jar for your Spring Boot app: - * `mvn clean package io.openliberty.boost:boost-maven-plugin:0.1:package` - * `java -jar target/.jar` - -* Create a Liberty based Docker image for your Spring Boot app: - * `mvn clean package io.openliberty.boost:boost-maven-plugin:0.1:docker-build` - * `docker run -p 9080:9080 ` - - -#### Quick start - uber jar - -1. Add the following to your project pom.xml - ```xml - - io.openliberty.boost - boost-maven-plugin - 0.1 - - - package - - package - - - - - ``` -1. Run `mvn clean package` -1. Run the produced jar file: `java -jar .jar` - -#### Quick start - docker - -1. Add the following to your project pom.xml - ```xml - - io.openliberty.boost - boost-maven-plugin - 0.1 - - - - docker-build - - - - - ``` -1. Run `mvn clean install` -1. Run the produced Docker image: `docker run -p 9080:9080 ` - -#### Tutorial - -For a more detailed tutorial, see [here](Tutorial.md). - -### Building and Developing Boost - -See [here](https://github.com/OpenLiberty/boost/wiki/Home) diff --git a/boost-maven/boost-maven-plugin/src/it/test-jdbc/pom.xml b/boost-maven/boost-maven-plugin/src/it/test-jdbc/pom.xml index 37d8d6cf..90b20579 100644 --- a/boost-maven/boost-maven-plugin/src/it/test-jdbc/pom.xml +++ b/boost-maven/boost-maven-plugin/src/it/test-jdbc/pom.xml @@ -249,7 +249,7 @@ org.microshed.boost boost-maven-plugin - 0.2 + @pom.version@