throwableList = ExceptionUtils.getThrowableList(throwable);
- if (throwableList.size() < 1)
- return throwable;
-
- Throwable root = null;
-
- if (throwableList.size() == 1) {
- root = throwable;
- } else {
- root = ExceptionUtils.getRootCause(throwable);
- }
-
- if (root instanceof DeploymentException || root instanceof DefinitionException) {
- return root;
- }
- if (isFragmentFound(DEPLOYMENT_EXCEPTION_FRAGMENTS, root)) {
- return new DeploymentException(root.getMessage());
- }
- if (isFragmentFound(DEFINITION_EXCEPTION_FRAGMENTS, root)) {
- return new DefinitionException(root.getMessage());
- }
- return throwable;
- }
-
- private boolean isFragmentFound(String[] fragments, Throwable rootException) {
- for (String fragment : fragments) {
- if (rootException.getMessage().contains(fragment)) {
- return true;
- }
- }
- return false;
- }
-
-}
diff --git a/external/webprofile-tck/cdi/runner/core/src/test/java/org/jboss/weld/tck/piranha/PiranhaExtension.java b/external/webprofile-tck/cdi/runner/core/src/test/java/org/jboss/weld/tck/piranha/PiranhaExtension.java
deleted file mode 100644
index a8ef5c5008..0000000000
--- a/external/webprofile-tck/cdi/runner/core/src/test/java/org/jboss/weld/tck/piranha/PiranhaExtension.java
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Copyright (c) 2002-2025 Manorrock.com. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. Neither the name of the copyright holder nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGE.
- */
-package org.jboss.weld.tck.piranha;
-
-import org.jboss.arquillian.container.spi.client.container.DeploymentExceptionTransformer;
-import org.jboss.arquillian.core.spi.LoadableExtension;
-
-/**
- * Registers the exception transformer to properly identify deployment failures.
- *
- */
-public class PiranhaExtension implements LoadableExtension {
-
- @Override
- public void register(ExtensionBuilder builder) {
- builder.service(DeploymentExceptionTransformer.class, PiranhaDeploymentExceptionTransformer.class);
- }
-
-}
diff --git a/external/webprofile-tck/cdi/runner/core/src/test/java/org/jboss/weld/tck/piranha/WeldBeansImpl.java b/external/webprofile-tck/cdi/runner/core/src/test/java/org/jboss/weld/tck/piranha/WeldBeansImpl.java
deleted file mode 100644
index fff057443b..0000000000
--- a/external/webprofile-tck/cdi/runner/core/src/test/java/org/jboss/weld/tck/piranha/WeldBeansImpl.java
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- * Copyright (c) 2024 Manorrock.com. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. Neither the name of the copyright holder nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGE.
- */
-
-package org.jboss.weld.tck.piranha;
-
-import java.io.IOException;
-import java.util.Arrays;
-
-import org.jboss.cdi.tck.spi.Beans;
-
-/**
- * CDI TCK tests use this class as an adapter between the test application and server container.
- *
- * Then its implementation can simplify the behavior, ie. explicit passivation, while
- * in a real application the decision to passivate/activate some object is on the container
- * and cannot be requested by the application.
- *
- * Until GlassFish provides standalone utility to do that, we have to fake
- * the passivation/activation.
- *
- * @author David Matejcek
- */
-public class WeldBeansImpl implements Beans {
-
- private Object fakeSerialized;
-
- @Override
- public boolean isProxy(Object instance) {
- return instance.getClass().getName().indexOf("_$$_Weld") > 0;
- }
-
- @Override
- public byte[] passivate(Object instance) throws IOException {
- fakeSerialized = instance;
- return instance.toString().getBytes();
- }
-
-
- @Override
- public Object activate(byte[] bytes) throws IOException, ClassNotFoundException {
- if (Arrays.equals(fakeSerialized.toString().getBytes(), bytes)) {
- Object result = fakeSerialized;
- fakeSerialized = null;
- return result;
- }
-
- return null;
- }
-}
diff --git a/external/webprofile-tck/cdi/runner/core/src/test/java/org/jboss/weld/tck/piranha/WeldContextImpl.java b/external/webprofile-tck/cdi/runner/core/src/test/java/org/jboss/weld/tck/piranha/WeldContextImpl.java
deleted file mode 100644
index 65b6fc1278..0000000000
--- a/external/webprofile-tck/cdi/runner/core/src/test/java/org/jboss/weld/tck/piranha/WeldContextImpl.java
+++ /dev/null
@@ -1,106 +0,0 @@
-/*
- * Copyright (c) 2024 Manorrock.com. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. Neither the name of the copyright holder nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGE.
- */
-
-package org.jboss.weld.tck.piranha;
-
-import jakarta.enterprise.context.spi.Context;
-import jakarta.enterprise.inject.spi.CDI;
-import jakarta.servlet.ServletContext;
-
-import org.jboss.cdi.tck.spi.Contexts;
-import org.jboss.weld.Container;
-import org.jboss.weld.context.ApplicationContext;
-import org.jboss.weld.context.DependentContext;
-import org.jboss.weld.context.ManagedContext;
-import org.jboss.weld.context.RequestContext;
-import org.jboss.weld.context.http.HttpRequestContext;
-import org.jboss.weld.util.ForwardingContext;
-
-public class WeldContextImpl implements Contexts {
-
- @Override
- public void setActive(Context context) {
- context = ForwardingContext.unwrap(context);
- if (context instanceof ManagedContext managedContext) {
- managedContext.activate();
- } else if (context instanceof ApplicationContext) {
- // No-op, always active
- } else {
- throw new UnsupportedOperationException();
- }
- }
-
- @Override
- public void setInactive(Context context) {
- context = ForwardingContext.unwrap(context);
- if (context instanceof ManagedContext managedContext) {
- managedContext.deactivate();
- } else {
- throw new UnsupportedOperationException();
- }
- }
-
- @Override
- public RequestContext getRequestContext() {
- return
- Container.instance(getContextId())
- .deploymentManager()
- .instance()
- .select(HttpRequestContext.class)
- .get();
- }
-
- @Override
- public DependentContext getDependentContext() {
- return
- Container.instance(getContextId())
- .deploymentManager().instance()
- .select(DependentContext.class)
- .get();
- }
-
- @Override
- public void destroyContext(Context context) {
- context = ForwardingContext.unwrap(context);
- if (context instanceof ManagedContext managedContext) {
- managedContext.invalidate();
- managedContext.deactivate();
- managedContext.activate();
- } else if (context instanceof ApplicationContext applicationContext) {
- applicationContext.invalidate();
- } else {
- throw new UnsupportedOperationException();
- }
- }
-
- private String getContextId() {
- ServletContext servletContext = CDI.current().select(ServletContext.class).get();
-
- return servletContext.getInitParameter("WELD_CONTEXT_ID_KEY");
- }
-}
diff --git a/external/webprofile-tck/cdi/runner/core/src/test/java/org/jboss/weld/tck/piranha/WeldELImpl.java b/external/webprofile-tck/cdi/runner/core/src/test/java/org/jboss/weld/tck/piranha/WeldELImpl.java
deleted file mode 100644
index 3eb86c119d..0000000000
--- a/external/webprofile-tck/cdi/runner/core/src/test/java/org/jboss/weld/tck/piranha/WeldELImpl.java
+++ /dev/null
@@ -1,129 +0,0 @@
-/*
- * Copyright (c) 2024 Manorrock.com. All Rights Reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. Neither the name of the copyright holder nor the names of its
- * contributors may be used to endorse or promote products derived from
- * this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
- * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGE.
- */
-
-package org.jboss.weld.tck.piranha;
-
-import jakarta.el.ArrayELResolver;
-import jakarta.el.BeanELResolver;
-import jakarta.el.CompositeELResolver;
-import jakarta.el.ELContext;
-import jakarta.el.ELContextEvent;
-import jakarta.el.ELContextListener;
-import jakarta.el.ELResolver;
-import jakarta.el.ExpressionFactory;
-import jakarta.el.FunctionMapper;
-import jakarta.el.ListELResolver;
-import jakarta.el.MapELResolver;
-import jakarta.el.ResourceBundleELResolver;
-import jakarta.el.VariableMapper;
-import jakarta.enterprise.inject.spi.BeanManager;
-
-import org.jboss.cdi.tck.spi.EL;
-import org.jboss.weld.bean.builtin.BeanManagerProxy;
-import org.jboss.weld.manager.BeanManagerImpl;
-import org.jboss.weld.module.web.el.WeldELContextListener;
-import org.jboss.weld.module.web.el.WeldExpressionFactory;
-
-public class WeldELImpl implements EL {
-
- private static final ExpressionFactory EXPRESSION_FACTORY = new WeldExpressionFactory(ExpressionFactory.newInstance());
-
- private static final ELContextListener[] EL_CONTEXT_LISTENERS = { new WeldELContextListener() };
-
- @Override
- @SuppressWarnings("unchecked")
- public T evaluateValueExpression(BeanManager beanManager, String expression, Class expectedType) {
- ELContext elContext = createELContext(beanManager);
- return (T) EXPRESSION_FACTORY.createValueExpression(elContext, expression, expectedType).getValue(elContext);
- }
-
- @Override
- @SuppressWarnings("unchecked")
- public T evaluateMethodExpression(BeanManager beanManager, String expression, Class expectedType,
- Class>[] expectedParamTypes, Object[] expectedParams) {
- ELContext elContext = createELContext(beanManager);
- return (T) EXPRESSION_FACTORY.createMethodExpression(elContext, expression, expectedType, expectedParamTypes).invoke(
- elContext, expectedParams);
- }
-
- @Override
- public ELContext createELContext(BeanManager beanManager) {
- if (beanManager instanceof BeanManagerProxy) {
- BeanManagerProxy proxy = (BeanManagerProxy) beanManager;
- beanManager = proxy.delegate();
- }
- if (beanManager instanceof BeanManagerImpl) {
- return createELContext((BeanManagerImpl) beanManager);
- }
- throw new IllegalStateException("Wrong manager");
- }
-
- private ELContext createELContext(BeanManagerImpl beanManagerImpl) {
-
- final ELResolver resolver = createELResolver(beanManagerImpl);
-
- ELContext context = new ELContext() {
-
- @Override
- public ELResolver getELResolver() {
- return resolver;
- }
-
- @Override
- public FunctionMapper getFunctionMapper() {
- return null;
- }
-
- @Override
- public VariableMapper getVariableMapper() {
- return null;
- }
-
- };
- callELContextListeners(context);
- return context;
- }
-
- private ELResolver createELResolver(BeanManagerImpl beanManagerImpl) {
- CompositeELResolver resolver = new CompositeELResolver();
- resolver.add(beanManagerImpl.getELResolver());
- resolver.add(new MapELResolver());
- resolver.add(new ListELResolver());
- resolver.add(new ArrayELResolver());
- resolver.add(new ResourceBundleELResolver());
- resolver.add(new BeanELResolver());
- return resolver;
- }
-
- private void callELContextListeners(ELContext context) {
- ELContextEvent event = new ELContextEvent(context);
- for (ELContextListener listener : EL_CONTEXT_LISTENERS) {
- listener.contextCreated(event);
- }
- }
-}
diff --git a/external/webprofile-tck/cdi/runner/core/src/test/resources/META-INF/cdi-tck.properties b/external/webprofile-tck/cdi/runner/core/src/test/resources/META-INF/cdi-tck.properties
deleted file mode 100644
index 4833d3f258..0000000000
--- a/external/webprofile-tck/cdi/runner/core/src/test/resources/META-INF/cdi-tck.properties
+++ /dev/null
@@ -1,4 +0,0 @@
-org.jboss.cdi.tck.cdiLiteMode=false
-org.jboss.cdi.tck.spi.Beans=org.jboss.weld.tck.piranha.WeldBeansImpl
-org.jboss.cdi.tck.spi.Contexts=org.jboss.weld.tck.piranha.WeldContextImpl
-org.jboss.cdi.tck.spi.EL=org.jboss.weld.tck.piranha.WeldELImpl
diff --git a/external/webprofile-tck/cdi/runner/core/src/test/resources/META-INF/services/org.jboss.arquillian.core.spi.LoadableExtension b/external/webprofile-tck/cdi/runner/core/src/test/resources/META-INF/services/org.jboss.arquillian.core.spi.LoadableExtension
deleted file mode 100644
index a1b1c306c5..0000000000
--- a/external/webprofile-tck/cdi/runner/core/src/test/resources/META-INF/services/org.jboss.arquillian.core.spi.LoadableExtension
+++ /dev/null
@@ -1 +0,0 @@
-org.jboss.weld.tck.piranha.PiranhaExtension
\ No newline at end of file
diff --git a/external/webprofile-tck/cdi/runner/core/src/test/resources/arquillian.xml b/external/webprofile-tck/cdi/runner/core/src/test/resources/arquillian.xml
deleted file mode 100644
index 16507cd026..0000000000
--- a/external/webprofile-tck/cdi/runner/core/src/test/resources/arquillian.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/external/webprofile-tck/cdi/runner/pom.xml b/external/webprofile-tck/cdi/runner/pom.xml
deleted file mode 100644
index c9dd17d186..0000000000
--- a/external/webprofile-tck/cdi/runner/pom.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
- 4.0.0
-
-
- cloud.piranha.external.webprofiletck.cditck
- project
- 25.1.0-SNAPSHOT
-
-
- cloud.piranha.external.webprofiletck.cditck.runner
- project
- pom
-
- Piranha Web Profile - CDI TCK - Runner - Project
-
-
- core
- signature
-
-
diff --git a/external/webprofile-tck/cdi/runner/signature/pom.xml b/external/webprofile-tck/cdi/runner/signature/pom.xml
deleted file mode 100644
index 8963f72aa4..0000000000
--- a/external/webprofile-tck/cdi/runner/signature/pom.xml
+++ /dev/null
@@ -1,111 +0,0 @@
-
-
-
- 4.0.0
-
-
- cloud.piranha.external.webprofiletck.cditck.runner
- project
- 25.1.0-SNAPSHOT
-
-
- signature
-
- Piranha Web Profile - CDI TCK - Runner - Signature
- Aggregates dependencies and runs the CDI Signature TCK on Piranha
-
-
- ${project.version}
- ${project.build.directory}/piranha
-
-
-
-
-
- org.apache.maven.plugins
- maven-dependency-plugin
-
-
- copy-cdi-sigtest
- process-resources
-
- copy
-
-
-
-
-
- jakarta.enterprise
- cdi-tck-core-impl
- 4.0.13
- sig
- sigtest-jdk11
- ${project.build.directory}/sigtest
-
-
- true
- true
-
-
-
-
- unpack-piranha
- process-test-resources
-
- unpack
-
-
- ${piranha.root}/dependency-maven-plugin-markers
-
-
- cloud.piranha.dist
- piranha-dist-webprofile
- ${piranha.version}
- jar
- false
- target/cdi-sigtest-classes
-
-
-
-
-
-
-
-
- jakarta.tck
- sigtest-maven-plugin
-
-
- sigtest
- verify
-
- check
-
-
-
-
- target/sigtest/cdi-tck-core-impl-sigtest-jdk11.sig
- jakarta.decorator,jakarta.enterprise.**,jakarta.interceptor
- target/cdi-sigtest-classes
- target/cdi-sig-report.txt
-
-
-
-
-
diff --git a/external/webprofile-tck/jsonb/pom.xml b/external/webprofile-tck/jsonb/pom.xml
deleted file mode 100644
index ff2a568734..0000000000
--- a/external/webprofile-tck/jsonb/pom.xml
+++ /dev/null
@@ -1,88 +0,0 @@
-
-
-
- 4.0.0
-
- cloud.piranha.external.webprofiletck
- project
- 25.1.0-SNAPSHOT
-
- jsonb-tck
- pom
- Piranha Web Profile - JSON Binding TCK
-
- 3.0.0
- ${project.build.directory}/tck
-
-
-
-
- cloud.piranha
- bom
- ${project.version}
- pom
- import
-
-
-
-
-
-
- org.apache.maven.plugins
- maven-antrun-plugin
-
-
- pre-integration-test
- pre-integration-test
-
- run
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- integration-test
- integration-test
-
- run
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/external/webprofile-tck/jsonp/pom.xml b/external/webprofile-tck/jsonp/pom.xml
deleted file mode 100644
index aa2b53c828..0000000000
--- a/external/webprofile-tck/jsonp/pom.xml
+++ /dev/null
@@ -1,91 +0,0 @@
-
-
-
- 4.0.0
-
- cloud.piranha.external.webprofiletck
- project
- 25.1.0-SNAPSHOT
-
- jsonp-tck
- pom
- Piranha Web Profile - JSON Processing TCK
-
- 2.1.1
- ${project.build.directory}/tck
-
-
-
-
- cloud.piranha
- bom
- ${project.version}
- pom
- import
-
-
-
-
-
-
- org.apache.maven.plugins
- maven-antrun-plugin
-
-
- pre-integration-test
- pre-integration-test
-
- run
-
-
-
- Executing UNIX profile
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- integration-test
- integration-test
-
- run
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/pom.xml b/pom.xml
index 4417dafda1..fbf18ce413 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1,13 +1,14 @@
-
+
4.0.0
-
cloud.piranha
project
25.1.0-SNAPSHOT
pom
-
Piranha
The Piranha Project delivers you with a variety of cloud containers
@@ -24,7 +25,6 @@
https://raw.githubusercontent.com/piranhacloud/piranha/current/LICENSE
-
mriem
@@ -40,7 +40,6 @@
Thiago Henrique Hupner
-
arquillian
bom
@@ -58,7 +57,6 @@
single
spring
-
scm:git:git://github.com/piranhacloud/piranha.git
scm:git:git@github.com:piranhacloud/piranha.git
@@ -74,7 +72,6 @@
https://oss.sonatype.org/content/repositories/snapshots
-
2.0.2
@@ -176,7 +173,6 @@
21
UTF-8
-
@@ -1085,7 +1081,6 @@
-
@@ -1103,9 +1098,7 @@
-
-
-
- external
-
- external
-
-