Permalink
Comparing changes
Open a pull request
8
contributors
Commits on Mar 21, 2019
Commits on Mar 27, 2019
Commits on Apr 01, 2019
Commits on Apr 04, 2019
Allow configuration via -D of the protocol used or even the full URL. This allows folks who use a maven proxy to continue to do so.
Unified
Split
Showing
with
1,986 additions
and 150 deletions.
- +1 −1 build-legacy/pom.xml
- +1 −1 build/pom.xml
- +1 −1 cli/pom.xml
- +15 −0 cli/src/main/java/org/jboss/as/cli/embedded/ThreadLocalContextSelector.java
- +5 −0 cli/src/main/java/org/jboss/as/cli/impl/CommandContextImpl.java
- +3 −1 cli/src/main/java/org/jboss/as/cli/impl/aesh/cmd/deployment/AbstractDeployContentCommand.java
- +1 −1 component-matrix-builder/pom.xml
- +1 −1 controller-client/pom.xml
- +1 −1 controller/pom.xml
- +3 −3 controller/src/main/java/org/jboss/as/controller/OperationContextImpl.java
- +40 −0 controller/src/main/java/org/jboss/as/controller/capability/RuntimeCapability.java
- +1 −1 controller/src/main/java/org/jboss/as/controller/capability/registry/CapabilityRegistration.java
- +2 −2 ...ller/src/main/java/org/jboss/as/controller/capability/registry/RuntimeCapabilityRegistration.java
- +1 −2 ...roller/src/main/java/org/jboss/as/controller/operations/global/ReadFeatureDescriptionHandler.java
- +1 −1 core-feature-pack/pom.xml
- +1 −1 core-galleon-pack/pom.xml
- +1 −1 core-management/core-management-client/pom.xml
- +1 −1 core-management/core-management-subsystem/pom.xml
- +1 −1 core-management/pom.xml
- +1 −1 core-model-test/framework/pom.xml
- +1 −1 core-model-test/pom.xml
- +1 −1 core-model-test/test-controller-optional/pom.xml
- +1 −1 core-model-test/tests/pom.xml
- +1 −1 core-security/api/pom.xml
- +1 −1 core-security/implementation/pom.xml
- +1 −1 core-security/pom.xml
- +1 −1 deployment-repository/pom.xml
- +1 −1 deployment-scanner/pom.xml
- +1 −1 discovery/pom.xml
- +1 −1 dist-legacy/pom.xml
- +1 −1 dist/pom.xml
- +1 −1 domain-http/error-context/pom.xml
- +1 −1 domain-http/interface/pom.xml
- +6 −4 domain-http/interface/src/main/java/org/jboss/as/domain/http/server/ManagementHttpServer.java
- +1 −1 domain-http/pom.xml
- +1 −1 domain-management/pom.xml
- +1 −1 elytron/pom.xml
- +1 −1 embedded/pom.xml
- +1 −1 host-controller/pom.xml
- +1 −1 io/pom.xml
- +1 −1 io/subsystem/pom.xml
- +1 −1 io/tests/pom.xml
- +1 −1 jmx/pom.xml
- +1 −1 launcher/pom.xml
- +1 −1 logging/pom.xml
- +2 −1 logging/src/main/java/org/jboss/as/logging/KnownModelVersion.java
- +6 −2 logging/src/main/java/org/jboss/as/logging/LoggingExtension.java
- +151 −0 logging/src/main/java/org/jboss/as/logging/LoggingSubsystemParser_7_0.java
- +10 −1 logging/src/main/java/org/jboss/as/logging/LoggingSubsystemWriter.java
- +3 −1 logging/src/main/java/org/jboss/as/logging/Namespace.java
- +11 −0 logging/src/main/java/org/jboss/as/logging/handlers/HandlerOperations.java
- +28 −4 logging/src/main/java/org/jboss/as/logging/handlers/SyslogHandlerResourceDefinition.java
- +13 −3 logging/src/main/java/org/jboss/as/logging/logmanager/WildFlyLogContextSelector.java
- +7 −3 logging/src/main/java/org/jboss/as/logging/logmanager/WildFlyLogContextSelectorImpl.java
- +1 −0 logging/src/main/resources/org/jboss/as/logging/LocalDescriptions.properties
- +825 −0 logging/src/main/resources/schema/jboss-as-logging_7_0.xsd
- +1 −1 logging/src/main/resources/subsystem-templates/logging.xml
- +12 −3 logging/src/test/java/org/jboss/as/logging/LoggingSubsystemTestCase.java
- +1 −1 logging/src/test/resources/default-subsystem.xml
- +1 −1 logging/src/test/resources/empty-subsystem.xml
- +3 −1 logging/src/test/resources/expressions.xml
- +249 −0 logging/src/test/resources/expressions_6_0.xml
- +3 −1 logging/src/test/resources/logging.xml
- +273 −0 logging/src/test/resources/logging_6_0.xml
- +1 −1 logging/src/test/resources/operations.xml
- +1 −1 logging/src/test/resources/rollback-logging.xml
- +1 −1 logging/src/test/resources/simple-subsystem.xml
- +1 −1 management-client-content/pom.xml
- +1 −1 model-test/pom.xml
- +1 −1 network/pom.xml
- +1 −1 patching/pom.xml
- +1 −1 platform-mbean/pom.xml
- +12 −4 pom.xml
- +1 −1 process-controller/pom.xml
- +1 −1 protocol/pom.xml
- +1 −1 remoting/pom.xml
- +1 −1 remoting/subsystem/pom.xml
- +4 −4 remoting/subsystem/src/main/resources/org/jboss/as/remoting/LocalDescriptions.properties
- +1 −1 remoting/tests/pom.xml
- +1 −1 request-controller/pom.xml
- +1 −1 security-manager/pom.xml
- +1 −1 server/pom.xml
- +5 −0 server/src/main/java/org/jboss/as/server/deployment/Attachments.java
- +57 −0 server/src/main/java/org/jboss/as/server/deployment/DelegatingSupplier.java
- +13 −0 server/src/main/java/org/jboss/as/server/deployment/DeploymentPhaseContext.java
- +23 −2 server/src/main/java/org/jboss/as/server/deployment/DeploymentPhaseContextImpl.java
- +1 −1 subsystem-test/framework/pom.xml
- +9 −32 subsystem-test/framework/src/main/java/org/jboss/as/subsystem/test/TransformationUtils.java
- +1 −1 subsystem-test/pom.xml
- +1 −1 subsystem-test/test-controller-optional/pom.xml
- +1 −1 subsystem-test/tests/pom.xml
- +1 −1 testsuite/client-old-server/pom.xml
- +1 −1 testsuite/domain/pom.xml
- +1 −1 testsuite/elytron/pom.xml
- +1 −1 testsuite/embedded/pom.xml
- +1 −1 testsuite/layers/pom.xml
- +1 −1 testsuite/manualmode/pom.xml
- +1 −1 testsuite/patching/pom.xml
- +1 −1 testsuite/pom.xml
- +1 −1 testsuite/rbac/pom.xml
- +1 −1 testsuite/scripts/pom.xml
- +1 −1 testsuite/shared/pom.xml
- +1 −1 testsuite/standalone/pom.xml
- +49 −0 .../standalone/src/test/java/org/jboss/as/test/integration/logging/syslog/SyslogHandlerTestCase.java
- +66 −0 testsuite/standalone/src/test/java/org/jboss/as/test/integration/management/cli/DeployTestCase.java
- +1 −1 testsuite/test-runner/pom.xml
- +1 −1 testsuite/vault-test-feature-pack/pom.xml
- +1 −1 threads/pom.xml
- +1 −1 version/pom.xml
| @@ -30,7 +30,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-parent</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>wildfly-core-build-legacy</artifactId> | ||
| @@ -30,7 +30,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-parent</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>wildfly-core-build</artifactId> | ||
| @@ -29,7 +29,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-parent</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>wildfly-cli</artifactId> | ||
| @@ -26,10 +26,14 @@ | ||
| import org.jboss.logmanager.LogContextSelector; | ||
| import org.jboss.stdio.StdioContext; | ||
| import org.jboss.stdio.StdioContextSelector; | ||
| import org.wildfly.security.manager.WildFlySecurityManager; | ||
|
|
||
| /** | ||
| * {@link org.jboss.stdio.StdioContextSelector} and {@link org.jboss.logmanager.LogContextSelector} | ||
| * that uses an {@link java.lang.InheritableThreadLocal} as a source of the contexts. | ||
| * <p> | ||
| * Note that if the logger is a CLI logger the default contexts will be used regardless of the thread-local contexts. | ||
| * </p> | ||
| * | ||
| * @author Brian Stansberry (c) 2015 Red Hat Inc. | ||
| */ | ||
| @@ -39,6 +43,7 @@ | ||
|
|
||
| private final Contexts localContexts; | ||
| private final Contexts defaultContexts; | ||
| private final ClassLoader cliClassLoader; | ||
|
|
||
| ThreadLocalContextSelector(Contexts local, Contexts defaults) { | ||
| assert local != null; | ||
| @@ -48,6 +53,7 @@ | ||
| assert defaults.getLogContext() != null; | ||
| this.localContexts = local; | ||
| this.defaultContexts = defaults; | ||
| cliClassLoader = ThreadLocalContextSelector.class.getClassLoader(); | ||
| } | ||
|
|
||
| Contexts pushLocal() { | ||
| @@ -62,13 +68,22 @@ void restore(Contexts toRestore) { | ||
|
|
||
| @Override | ||
| public StdioContext getStdioContext() { | ||
| // CLI loggers should only use the default stdio context regardless if the thread-local context is set. | ||
| if (WildFlySecurityManager.getCurrentContextClassLoaderPrivileged().equals(cliClassLoader)) { | ||
| return defaultContexts.getStdioContext(); | ||
| } | ||
| Contexts threadContext = threadLocal.get(); | ||
| StdioContext local = threadContext != null ? threadContext.getStdioContext() : null; | ||
| return local == null ? defaultContexts.getStdioContext() : local; | ||
| } | ||
|
|
||
| @Override | ||
| public LogContext getLogContext() { | ||
| // CLI loggers should only use the default stdio context regardless if the thread-local context is set This | ||
| // allows the context configured for CLI, e.g. jboss-cli-logging.properties. | ||
| if (WildFlySecurityManager.getCurrentContextClassLoaderPrivileged().equals(cliClassLoader)) { | ||
| return defaultContexts.getLogContext(); | ||
| } | ||
| Contexts threadContext = threadLocal.get(); | ||
| LogContext local = threadContext != null ? threadContext.getLogContext() : null; | ||
| return local == null ? defaultContexts.getLogContext() : local; | ||
| @@ -1743,6 +1743,11 @@ private void handleCommand(ParsedCommandLine parsed) throws CommandFormatExcepti | ||
| } | ||
| } | ||
| } | ||
| // Needed to have the command be fully parsed and retrieve the | ||
| // child command. This is caused by aesh 2.0 behavior. | ||
| if (isBatchMode()) { | ||
| exec.populateCommand(); | ||
| } | ||
| BatchCompliantCommand bc = exec.getBatchCompliant(); | ||
| if (isBatchMode() && bc != null) { | ||
| try { | ||
| @@ -128,9 +128,11 @@ private ModelNode buildDeploymentRequest(CommandContext ctx, String op, | ||
| // replace | ||
| final ModelNode request = new ModelNode(); | ||
| request.get(Util.OPERATION).set(op); | ||
| request.get(Util.NAME).set(name); | ||
| if (op.equals(Util.ADD)) { // replace is on root, add is on deployed artifact. | ||
| request.get(Util.ADDRESS, Util.DEPLOYMENT).set(name); | ||
| } else { | ||
| request.get(Util.NAME).set(name); | ||
| request.get(Util.ADDRESS).setEmptyList(); | ||
| } | ||
| if (runtimeName != null) { | ||
| request.get(Util.RUNTIME_NAME).set(runtimeName); | ||
| @@ -26,7 +26,7 @@ | ||
| Maintain separation between the artifact id and the version to help prevent | ||
| merge conflicts between commits changing the GA and those changing the V. | ||
| --> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <groupId>org.wildfly.core</groupId> | ||
| @@ -29,7 +29,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-parent</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>wildfly-controller-client</artifactId> | ||
| @@ -29,7 +29,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-parent</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>wildfly-controller</artifactId> | ||
| @@ -1499,7 +1499,7 @@ public void registerCapability(RuntimeCapability capability) { | ||
| registerCapability(capability, activeStep, null); | ||
| } | ||
|
|
||
| void registerCapability(RuntimeCapability capability, Step step, String attribute) { | ||
| void registerCapability(RuntimeCapability<?> capability, Step step, String attribute) { | ||
| assert isControllingThread(); | ||
| assertStageModel(currentStage); | ||
| ensureLocalCapabilityRegistry(); | ||
| @@ -1614,7 +1614,7 @@ void removeCapability(String capabilityName, Step step) { | ||
| CapabilityScope context = createCapabilityContext(step.address); | ||
| RuntimeCapabilityRegistration capReg = managementModel.getCapabilityRegistry().removeCapability(capabilityName, context, step.address); | ||
| if (capReg != null) { | ||
| RuntimeCapability capability = capReg.getCapability(); | ||
| RuntimeCapability<?> capability = capReg.getCapability(); | ||
| for (String required : capability.getRequirements()) { | ||
| removeRequirement(required, context, step); | ||
| } | ||
| @@ -1994,7 +1994,7 @@ private RuntimeRequirementRegistration createRequirementRegistration(String requ | ||
| return new RuntimeRequirementRegistration(required, dependent, context, rp, runtimeOnly); | ||
| } | ||
|
|
||
| private RuntimeCapabilityRegistration createCapabilityRegistration(RuntimeCapability capability, Step step, String attribute) { | ||
| private RuntimeCapabilityRegistration createCapabilityRegistration(RuntimeCapability<?> capability, Step step, String attribute) { | ||
| CapabilityScope context = createCapabilityContext(step.address); | ||
| RegistrationPoint rp = new RegistrationPoint(step.address, attribute); | ||
| return new RuntimeCapabilityRegistration(capability, context, rp); | ||
| @@ -300,6 +300,46 @@ private ServiceName getServiceName() { | ||
| return additionalPackages; | ||
| } | ||
|
|
||
| @Override | ||
| public String getName() { | ||
| return super.getName(); | ||
| } | ||
|
|
||
| @Override | ||
| public Set<String> getRequirements() { | ||
| return super.getRequirements(); | ||
| } | ||
|
|
||
| @Override | ||
| public boolean isDynamicallyNamed() { | ||
| return super.isDynamicallyNamed(); | ||
| } | ||
|
|
||
| @Override | ||
| public String getDynamicName(String dynamicNameElement) { | ||
| return super.getDynamicName(dynamicNameElement); | ||
| } | ||
|
|
||
| @Override | ||
| public String getDynamicName(PathAddress address) { | ||
| return super.getDynamicName(address); | ||
| } | ||
|
|
||
| @Override | ||
| public boolean equals(Object o) { | ||
| return super.equals(o); | ||
| } | ||
|
|
||
| @Override | ||
| public int hashCode() { | ||
| return super.hashCode(); | ||
| } | ||
|
|
||
| @Override | ||
| public String toString() { | ||
| return super.toString(); | ||
| } | ||
|
|
||
| /** | ||
| * Builder for a {@link RuntimeCapability}. | ||
| * | ||
| @@ -38,7 +38,7 @@ | ||
| * | ||
| * @author Brian Stansberry (c) 2014 Red Hat Inc. | ||
| */ | ||
| public class CapabilityRegistration<C extends Capability> implements Comparable<CapabilityRegistration> { | ||
| public class CapabilityRegistration<C extends Capability> implements Comparable<CapabilityRegistration<C>> { | ||
|
|
||
| private final Map<PathAddress, RegistrationPoint> registrationPoints = new LinkedHashMap<>(); | ||
| private final C capability; | ||
| @@ -31,9 +31,9 @@ | ||
| * | ||
| * @author Brian Stansberry (c) 2014 Red Hat Inc. | ||
| */ | ||
| public class RuntimeCapabilityRegistration extends CapabilityRegistration<RuntimeCapability> { | ||
| public class RuntimeCapabilityRegistration extends CapabilityRegistration<RuntimeCapability<?>> { | ||
|
|
||
| public RuntimeCapabilityRegistration(RuntimeCapability capability, CapabilityScope context, RegistrationPoint registrationPoint) { | ||
| public RuntimeCapabilityRegistration(RuntimeCapability<?> capability, CapabilityScope context, RegistrationPoint registrationPoint) { | ||
| super(capability, context, registrationPoint); | ||
| } | ||
|
|
||
| @@ -814,8 +814,7 @@ private void addRequiredCapabilities(ModelNode feature, | ||
| } | ||
| } | ||
| // WFLY-4164 record the fixed requirements of the registration's capabilities | ||
| Set<RuntimeCapability> regCaps = registration.getCapabilities(); | ||
| for (RuntimeCapability regCap : regCaps) { | ||
| for (RuntimeCapability<?> regCap : registration.getCapabilities()) { | ||
| for (String capReq : regCap.getRequirements()) { | ||
| if (!required.containsKey(capReq)) { | ||
| ModelNode capability = new ModelNode(); | ||
| @@ -30,7 +30,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-parent</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>wildfly-core-feature-pack</artifactId> | ||
| @@ -30,7 +30,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-parent</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>wildfly-core-galleon-pack</artifactId> | ||
| @@ -29,7 +29,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-management</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>wildfly-core-management-client</artifactId> | ||
| @@ -29,7 +29,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-management</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>wildfly-core-management-subsystem</artifactId> | ||
| @@ -29,7 +29,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-parent</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>wildfly-core-management</artifactId> | ||
| @@ -29,7 +29,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-model-test</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>wildfly-core-model-test-framework</artifactId> | ||
| @@ -29,7 +29,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-parent</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>wildfly-core-model-test</artifactId> | ||
| @@ -29,7 +29,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-model-test</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
| <!-- | ||
| Just here for the tests module to include as an optional dependency to avoid picking up | ||
| @@ -29,7 +29,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-model-test</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>wildfly-core-model-test-tests</artifactId> | ||
| @@ -31,7 +31,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-security-parent</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| <relativePath>../pom.xml</relativePath> | ||
| </parent> | ||
|
|
||
| @@ -31,7 +31,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-security-parent</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| <relativePath>../pom.xml</relativePath> | ||
| </parent> | ||
|
|
||
| @@ -29,7 +29,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-parent</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>wildfly-core-security-parent</artifactId> | ||
| @@ -29,7 +29,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-parent</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>wildfly-deployment-repository</artifactId> | ||
| @@ -29,7 +29,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-parent</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>wildfly-deployment-scanner</artifactId> | ||
| @@ -30,7 +30,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-parent</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>wildfly-discovery</artifactId> | ||
| @@ -30,7 +30,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-parent</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>wildfly-core-dist-legacy</artifactId> | ||
| @@ -30,7 +30,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-core-parent</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>wildfly-core-dist</artifactId> | ||
| @@ -29,7 +29,7 @@ | ||
| <parent> | ||
| <groupId>org.wildfly.core</groupId> | ||
| <artifactId>wildfly-domain-http</artifactId> | ||
| <version>9.0.0.Beta2-SNAPSHOT</version> | ||
| <version>9.0.0.Beta3-SNAPSHOT</version> | ||
| </parent> | ||
|
|
||
| <artifactId>wildfly-domain-http-error-context</artifactId> | ||
Oops, something went wrong.