From 4f2f7a51b894af351d102fedbb19abcad91567d6 Mon Sep 17 00:00:00 2001 From: LightGuard Date: Wed, 24 Aug 2011 00:19:57 -0600 Subject: [PATCH 1/6] Fixing tests for Beta2 --- api/pom.xml | 9 --------- impl/pom.xml | 4 ++++ .../filter/test/StackFilteringTest.java | 16 ++++++++-------- pom.xml | 8 +++++++- .../exception/control/test/BaseWebArchive.java | 8 ++++---- .../container-boms/weld-ee-embedded-1.1/pom.xml | 6 ++++++ testsuite/internals/pom.xml | 4 ++++ testsuite/internals/weld-ee-embedded/pom.xml | 17 +++++++++++++++++ 8 files changed, 50 insertions(+), 22 deletions(-) diff --git a/api/pom.xml b/api/pom.xml index 1363975..4a8df73 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -28,11 +28,6 @@ seam-catch-api jar - - 4.8.2 - 1.3.RC2 - - Seam Catch API ${project.parent.url} @@ -41,14 +36,10 @@ junit junit - ${junit.version} - test org.hamcrest hamcrest-library - ${hamcrest.version} - test diff --git a/impl/pom.xml b/impl/pom.xml index f44e03d..182ab16 100644 --- a/impl/pom.xml +++ b/impl/pom.xml @@ -63,6 +63,10 @@ junit junit + + org.hamcrest + hamcrest-library + diff --git a/impl/src/test/java/org/jboss/seam/exception/filter/test/StackFilteringTest.java b/impl/src/test/java/org/jboss/seam/exception/filter/test/StackFilteringTest.java index 07f0560..e57fc97 100644 --- a/impl/src/test/java/org/jboss/seam/exception/filter/test/StackFilteringTest.java +++ b/impl/src/test/java/org/jboss/seam/exception/filter/test/StackFilteringTest.java @@ -101,16 +101,15 @@ public void dropTest() throws IOException { final StackFrameFilter filter = new StackFrameFilter() { @Override public StackFrameFilterResult process(StackFrame frame) { + // We want to drop calls referring to reflection if (frame.isMarkSet("reflections.invoke")) { - if (frame.getStackTraceElement().getClassName().contains("java.lang.reflect")) { + if (!frame.getStackTraceElement().toString().contains("reflect")) { frame.clearMark("reflections.invoke"); return StackFrameFilterResult.INCLUDE; - } else if (frame.getStackTraceElement().getMethodName().startsWith("invoke")) { - return StackFrameFilterResult.DROP; } } - if (frame.getStackTraceElement().getMethodName().startsWith("invoke")) { + if (frame.getStackTraceElement().toString().contains("reflect")) { frame.mark("reflections.invoke"); return StackFrameFilterResult.DROP; } @@ -127,18 +126,19 @@ public StackFrameFilterResult process(StackFrame frame) { final ExceptionStackOutput exceptionStackOutput = new ExceptionStackOutput(noClassDefFoundError, filter); final String result = exceptionStackOutput.printTrace(); final LineNumberReader lineNumberReader = new LineNumberReader(new StringReader(result)); - int invokeLines = 0; + int reflectLines = 0; String line; while ((line = lineNumberReader.readLine()) != null) { if (line.contains("reflect")) { - invokeLines++; + reflectLines++; } - } // just get the line numbers + System.out.println(line); + } assertThat("Actual: " + result, lineNumberReader.getLineNumber() < 22, is(true)); - assertThat(invokeLines, is(1)); + assertThat(reflectLines, is(0)); } @Test diff --git a/pom.xml b/pom.xml index e8e14aa..6c8e0d5 100644 --- a/pom.xml +++ b/pom.xml @@ -21,7 +21,7 @@ seam-parent org.jboss.seam - 12 + 14 org.jboss.seam.catch @@ -80,6 +80,12 @@ ${seam.solder.version} compile + + org.hamcrest + hamcrest-library + ${hamcrest.version} + test + diff --git a/testsuite/common/src/main/java/org/jboss/seam/exception/control/test/BaseWebArchive.java b/testsuite/common/src/main/java/org/jboss/seam/exception/control/test/BaseWebArchive.java index 3e90356..488c683 100644 --- a/testsuite/common/src/main/java/org/jboss/seam/exception/control/test/BaseWebArchive.java +++ b/testsuite/common/src/main/java/org/jboss/seam/exception/control/test/BaseWebArchive.java @@ -61,15 +61,15 @@ public final class BaseWebArchive { private static volatile JavaArchive solderLoggingJar = null; private static volatile JavaArchive solderApiJar = null; - private static final String SOLDER_VERSION = "3.1.0.Beta1"; + private static final String SOLDER_VERSION = "3.1.0.Beta2"; private static final String SOLDER_NAME = "seam-solder-" + SOLDER_VERSION + ".jar"; private static final String SOLDER_LOGGING_NAME = "seam-solder-logging-" + SOLDER_VERSION + ".jar"; private static final String SOLDER_API_NAME = "seam-solder-api-" + SOLDER_VERSION + ".jar"; - private static final String SOLDER_JBOSS_REPO = "https://repository.jboss.org/nexus/content/groups/staging/org/jboss/seam/solder/seam-solder/"; - private static final String SOLDER_LOGGING_JBOSS_REPO = "https://repository.jboss.org/nexus/content/groups/staging/org/jboss/seam/solder/seam-solder-logging/"; - private static final String SOLDER_API_JBOSS_REPO = "https://repository.jboss.org/nexus/content/groups/staging/org/jboss/seam/solder/seam-solder-api/"; + private static final String SOLDER_JBOSS_REPO = "https://repository.jboss.org/nexus/content/groups/public/org/jboss/seam/solder/seam-solder/"; + private static final String SOLDER_LOGGING_JBOSS_REPO = "https://repository.jboss.org/nexus/content/groups/public/org/jboss/seam/solder/seam-solder-logging/"; + private static final String SOLDER_API_JBOSS_REPO = "https://repository.jboss.org/nexus/content/groups/public/org/jboss/seam/solder/seam-solder-api/"; private static final String SOLDER_URL_STRING = SOLDER_JBOSS_REPO + SOLDER_VERSION + "/" + SOLDER_NAME; private static final String SOLDER_LOGGING_URL_STRING = SOLDER_LOGGING_JBOSS_REPO + SOLDER_VERSION + "/" + SOLDER_LOGGING_NAME; diff --git a/testsuite/container-boms/weld-ee-embedded-1.1/pom.xml b/testsuite/container-boms/weld-ee-embedded-1.1/pom.xml index 1dfac2a..a540d59 100644 --- a/testsuite/container-boms/weld-ee-embedded-1.1/pom.xml +++ b/testsuite/container-boms/weld-ee-embedded-1.1/pom.xml @@ -39,6 +39,12 @@ org.jboss.weld weld-core compile + + + org.slf4j + slf4j-api + + org.slf4j diff --git a/testsuite/internals/pom.xml b/testsuite/internals/pom.xml index 7c54cb6..f9cef8c 100644 --- a/testsuite/internals/pom.xml +++ b/testsuite/internals/pom.xml @@ -30,6 +30,10 @@ Seam Catch Test Suite: Internals Integration Tests pom + + 3.1.0.Beta2 + + base weld-ee-embedded diff --git a/testsuite/internals/weld-ee-embedded/pom.xml b/testsuite/internals/weld-ee-embedded/pom.xml index 0ae3f39..c3ed4f4 100644 --- a/testsuite/internals/weld-ee-embedded/pom.xml +++ b/testsuite/internals/weld-ee-embedded/pom.xml @@ -63,6 +63,23 @@ org.jboss.weld weld-core provided + + + org.slf4j + slf4j-api + + + + + org.slf4j + slf4j-api + ${version.slf4j} + test + + + org.jboss.seam.solder + seam-solder-logging + ${seam.solder.version} From b750c52774a695248b533702b8c2708786a22dd2 Mon Sep 17 00:00:00 2001 From: LightGuard Date: Wed, 24 Aug 2011 00:24:20 -0600 Subject: [PATCH 2/6] Removing solder snapshot --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6c8e0d5..e237f43 100644 --- a/pom.xml +++ b/pom.xml @@ -33,7 +33,7 @@ 3.1.0-SNAPSHOT - 3.1.0-SNAPSHOT + 3.1.0.Beta2 2.0.0.Final From 936ab9c61e906f22c6006e262a9e5ff76cd5e8ec Mon Sep 17 00:00:00 2001 From: LightGuard Date: Wed, 24 Aug 2011 00:25:54 -0600 Subject: [PATCH 3/6] Removing seam bom snapshot --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e237f43..f5198be 100644 --- a/pom.xml +++ b/pom.xml @@ -32,7 +32,7 @@ http://www.seamframework.org/Seam3/CatchModuleHome - 3.1.0-SNAPSHOT + 3.1.0.Beta2 3.1.0.Beta2 2.0.0.Final From b970443fe132c46b73f92c880670a13813fca4ab Mon Sep 17 00:00:00 2001 From: LightGuard Date: Wed, 24 Aug 2011 00:31:06 -0600 Subject: [PATCH 4/6] Adding id for assembly --- dist/src/main/assembly/assembly.xml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/dist/src/main/assembly/assembly.xml b/dist/src/main/assembly/assembly.xml index c0eee74..653f6f6 100644 --- a/dist/src/main/assembly/assembly.xml +++ b/dist/src/main/assembly/assembly.xml @@ -19,6 +19,8 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> + distribution + zip @@ -53,7 +55,7 @@ ${artifact.artifactId}${dashClassifier?}.${artifact.extension} - + lib @@ -65,7 +67,7 @@ ${artifact.artifactId}${dashClassifier?}.${artifact.extension} - + examples @@ -75,7 +77,7 @@ org.jboss.seam.catch:seam-catch-example-basic-servlet - + doc/api @@ -104,7 +106,7 @@ - + source @@ -119,6 +121,6 @@ META-INF/ - + From db318c77f08fe97ece130bfb7023e69a761c00c5 Mon Sep 17 00:00:00 2001 From: LightGuard Date: Wed, 24 Aug 2011 00:41:16 -0600 Subject: [PATCH 5/6] [maven-release-plugin] prepare release 3.1.0.Beta2 --- api/pom.xml | 2 +- dist/pom.xml | 2 +- docs/pom.xml | 2 +- impl/pom.xml | 2 +- pom.xml | 2 +- testsuite/common/pom.xml | 2 +- testsuite/container-boms/jbossas-managed-7/pom.xml | 4 ++-- testsuite/container-boms/pom.xml | 4 ++-- testsuite/container-boms/weld-ee-embedded-1.1/pom.xml | 4 ++-- testsuite/internals/base/pom.xml | 4 ++-- testsuite/internals/jbossas/pom.xml | 4 ++-- testsuite/internals/pom.xml | 4 ++-- testsuite/internals/weld-ee-embedded/pom.xml | 4 ++-- testsuite/pom.xml | 4 ++-- 14 files changed, 22 insertions(+), 22 deletions(-) diff --git a/api/pom.xml b/api/pom.xml index 4a8df73..548d7b8 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -21,7 +21,7 @@ seam-catch-parent org.jboss.seam.catch - 3.1.0-SNAPSHOT + 3.1.0.Beta2 ../pom.xml diff --git a/dist/pom.xml b/dist/pom.xml index 1e0097e..dc6f7a4 100644 --- a/dist/pom.xml +++ b/dist/pom.xml @@ -21,7 +21,7 @@ org.jboss.seam.catch seam-catch-parent - 3.1.0-SNAPSHOT + 3.1.0.Beta2 ../pom.xml diff --git a/docs/pom.xml b/docs/pom.xml index 6126407..0c8a280 100644 --- a/docs/pom.xml +++ b/docs/pom.xml @@ -20,7 +20,7 @@ org.jboss.seam.catch seam-catch-parent - 3.1.0-SNAPSHOT + 3.1.0.Beta2 ../pom.xml diff --git a/impl/pom.xml b/impl/pom.xml index 182ab16..818183f 100644 --- a/impl/pom.xml +++ b/impl/pom.xml @@ -21,7 +21,7 @@ org.jboss.seam.catch seam-catch-parent - 3.1.0-SNAPSHOT + 3.1.0.Beta2 ../pom.xml diff --git a/pom.xml b/pom.xml index f5198be..7a9fc79 100644 --- a/pom.xml +++ b/pom.xml @@ -27,7 +27,7 @@ org.jboss.seam.catch seam-catch-parent pom - 3.1.0-SNAPSHOT + 3.1.0.Beta2 Seam Catch Module http://www.seamframework.org/Seam3/CatchModuleHome diff --git a/testsuite/common/pom.xml b/testsuite/common/pom.xml index 3060eec..ead3360 100644 --- a/testsuite/common/pom.xml +++ b/testsuite/common/pom.xml @@ -22,7 +22,7 @@ org.jboss.seam.catch seam-catch-testsuite ../pom.xml - 3.1.0-SNAPSHOT + 3.1.0.Beta2 seam-catch-testsuite-common diff --git a/testsuite/container-boms/jbossas-managed-7/pom.xml b/testsuite/container-boms/jbossas-managed-7/pom.xml index 1a421f2..4a4b988 100644 --- a/testsuite/container-boms/jbossas-managed-7/pom.xml +++ b/testsuite/container-boms/jbossas-managed-7/pom.xml @@ -21,11 +21,11 @@ org.jboss.seam.catch container-boms ../pom.xml - 3.1.0-SNAPSHOT + 3.1.0.Beta2 container-bom-jbossas-managed-7 - 3.1.0-SNAPSHOT + 3.1.0.Beta2 pom JBoss AS7 Managed Container diff --git a/testsuite/container-boms/pom.xml b/testsuite/container-boms/pom.xml index 904f466..ea0f197 100644 --- a/testsuite/container-boms/pom.xml +++ b/testsuite/container-boms/pom.xml @@ -21,11 +21,11 @@ org.jboss.seam.catch seam-catch-testsuite ../pom.xml - 3.1.0-SNAPSHOT + 3.1.0.Beta2 container-boms - 3.1.0-SNAPSHOT + 3.1.0.Beta2 pom Seam Container BOMs Aggregator diff --git a/testsuite/container-boms/weld-ee-embedded-1.1/pom.xml b/testsuite/container-boms/weld-ee-embedded-1.1/pom.xml index a540d59..befacb3 100644 --- a/testsuite/container-boms/weld-ee-embedded-1.1/pom.xml +++ b/testsuite/container-boms/weld-ee-embedded-1.1/pom.xml @@ -21,10 +21,10 @@ org.jboss.seam.catch container-boms ../pom.xml - 3.1.0-SNAPSHOT + 3.1.0.Beta2 - 3.1.0-SNAPSHOT + 3.1.0.Beta2 container-bom-weld-ee-embedded-1.1 pom Weld EE Embedded 1.1 Container diff --git a/testsuite/internals/base/pom.xml b/testsuite/internals/base/pom.xml index cdd84f5..ead838c 100644 --- a/testsuite/internals/base/pom.xml +++ b/testsuite/internals/base/pom.xml @@ -22,12 +22,12 @@ org.jboss.seam.catch seam-catch-testsuite-integration-internals ../pom.xml - 3.1.0-SNAPSHOT + 3.1.0.Beta2 seam-catch-testsuite-integration-internals-base Seam Catch Test Suite: Internals Integration Tests Base - 3.1.0-SNAPSHOT + 3.1.0.Beta2 jar diff --git a/testsuite/internals/jbossas/pom.xml b/testsuite/internals/jbossas/pom.xml index b4fd95f..eb182a8 100644 --- a/testsuite/internals/jbossas/pom.xml +++ b/testsuite/internals/jbossas/pom.xml @@ -22,10 +22,10 @@ org.jboss.seam.catch seam-catch-testsuite-integration-internals ../pom.xml - 3.1.0-SNAPSHOT + 3.1.0.Beta2 - 3.1.0-SNAPSHOT + 3.1.0.Beta2 seam-catch-testsuite-integration-internals-jbossas Seam Catch Test Suite: Internals Integration Tests for JBoss AS jar diff --git a/testsuite/internals/pom.xml b/testsuite/internals/pom.xml index f9cef8c..259681f 100644 --- a/testsuite/internals/pom.xml +++ b/testsuite/internals/pom.xml @@ -21,11 +21,11 @@ org.jboss.seam.catch seam-catch-testsuite - 3.1.0-SNAPSHOT + 3.1.0.Beta2 ../pom.xml - 3.1.0-SNAPSHOT + 3.1.0.Beta2 seam-catch-testsuite-integration-internals Seam Catch Test Suite: Internals Integration Tests pom diff --git a/testsuite/internals/weld-ee-embedded/pom.xml b/testsuite/internals/weld-ee-embedded/pom.xml index c3ed4f4..4afa09d 100644 --- a/testsuite/internals/weld-ee-embedded/pom.xml +++ b/testsuite/internals/weld-ee-embedded/pom.xml @@ -22,10 +22,10 @@ org.jboss.seam.catch seam-catch-testsuite-integration-internals ../pom.xml - 3.1.0-SNAPSHOT + 3.1.0.Beta2 - 3.1.0-SNAPSHOT + 3.1.0.Beta2 seam-catch-testsuite-integration-internals-weld-ee-embedded Seam Catch Test Suite: Internals Integration Tests for Weld EE Embedded diff --git a/testsuite/pom.xml b/testsuite/pom.xml index c562a47..7101e22 100644 --- a/testsuite/pom.xml +++ b/testsuite/pom.xml @@ -21,10 +21,10 @@ org.jboss.seam.catch seam-catch-parent ../pom.xml - 3.1.0-SNAPSHOT + 3.1.0.Beta2 - 3.1.0-SNAPSHOT + 3.1.0.Beta2 seam-catch-testsuite pom From 6ae02e72fa290f8543c1594581bc7c3ba0648c5d Mon Sep 17 00:00:00 2001 From: LightGuard Date: Wed, 24 Aug 2011 00:41:21 -0600 Subject: [PATCH 6/6] [maven-release-plugin] prepare for next development iteration --- api/pom.xml | 2 +- dist/pom.xml | 2 +- docs/pom.xml | 2 +- impl/pom.xml | 2 +- pom.xml | 2 +- testsuite/common/pom.xml | 2 +- testsuite/container-boms/jbossas-managed-7/pom.xml | 4 ++-- testsuite/container-boms/pom.xml | 4 ++-- testsuite/container-boms/weld-ee-embedded-1.1/pom.xml | 4 ++-- testsuite/internals/base/pom.xml | 4 ++-- testsuite/internals/jbossas/pom.xml | 4 ++-- testsuite/internals/pom.xml | 4 ++-- testsuite/internals/weld-ee-embedded/pom.xml | 4 ++-- testsuite/pom.xml | 4 ++-- 14 files changed, 22 insertions(+), 22 deletions(-) diff --git a/api/pom.xml b/api/pom.xml index 548d7b8..4a8df73 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -21,7 +21,7 @@ seam-catch-parent org.jboss.seam.catch - 3.1.0.Beta2 + 3.1.0-SNAPSHOT ../pom.xml diff --git a/dist/pom.xml b/dist/pom.xml index dc6f7a4..1e0097e 100644 --- a/dist/pom.xml +++ b/dist/pom.xml @@ -21,7 +21,7 @@ org.jboss.seam.catch seam-catch-parent - 3.1.0.Beta2 + 3.1.0-SNAPSHOT ../pom.xml diff --git a/docs/pom.xml b/docs/pom.xml index 0c8a280..6126407 100644 --- a/docs/pom.xml +++ b/docs/pom.xml @@ -20,7 +20,7 @@ org.jboss.seam.catch seam-catch-parent - 3.1.0.Beta2 + 3.1.0-SNAPSHOT ../pom.xml diff --git a/impl/pom.xml b/impl/pom.xml index 818183f..182ab16 100644 --- a/impl/pom.xml +++ b/impl/pom.xml @@ -21,7 +21,7 @@ org.jboss.seam.catch seam-catch-parent - 3.1.0.Beta2 + 3.1.0-SNAPSHOT ../pom.xml diff --git a/pom.xml b/pom.xml index 7a9fc79..f5198be 100644 --- a/pom.xml +++ b/pom.xml @@ -27,7 +27,7 @@ org.jboss.seam.catch seam-catch-parent pom - 3.1.0.Beta2 + 3.1.0-SNAPSHOT Seam Catch Module http://www.seamframework.org/Seam3/CatchModuleHome diff --git a/testsuite/common/pom.xml b/testsuite/common/pom.xml index ead3360..3060eec 100644 --- a/testsuite/common/pom.xml +++ b/testsuite/common/pom.xml @@ -22,7 +22,7 @@ org.jboss.seam.catch seam-catch-testsuite ../pom.xml - 3.1.0.Beta2 + 3.1.0-SNAPSHOT seam-catch-testsuite-common diff --git a/testsuite/container-boms/jbossas-managed-7/pom.xml b/testsuite/container-boms/jbossas-managed-7/pom.xml index 4a4b988..1a421f2 100644 --- a/testsuite/container-boms/jbossas-managed-7/pom.xml +++ b/testsuite/container-boms/jbossas-managed-7/pom.xml @@ -21,11 +21,11 @@ org.jboss.seam.catch container-boms ../pom.xml - 3.1.0.Beta2 + 3.1.0-SNAPSHOT container-bom-jbossas-managed-7 - 3.1.0.Beta2 + 3.1.0-SNAPSHOT pom JBoss AS7 Managed Container diff --git a/testsuite/container-boms/pom.xml b/testsuite/container-boms/pom.xml index ea0f197..904f466 100644 --- a/testsuite/container-boms/pom.xml +++ b/testsuite/container-boms/pom.xml @@ -21,11 +21,11 @@ org.jboss.seam.catch seam-catch-testsuite ../pom.xml - 3.1.0.Beta2 + 3.1.0-SNAPSHOT container-boms - 3.1.0.Beta2 + 3.1.0-SNAPSHOT pom Seam Container BOMs Aggregator diff --git a/testsuite/container-boms/weld-ee-embedded-1.1/pom.xml b/testsuite/container-boms/weld-ee-embedded-1.1/pom.xml index befacb3..a540d59 100644 --- a/testsuite/container-boms/weld-ee-embedded-1.1/pom.xml +++ b/testsuite/container-boms/weld-ee-embedded-1.1/pom.xml @@ -21,10 +21,10 @@ org.jboss.seam.catch container-boms ../pom.xml - 3.1.0.Beta2 + 3.1.0-SNAPSHOT - 3.1.0.Beta2 + 3.1.0-SNAPSHOT container-bom-weld-ee-embedded-1.1 pom Weld EE Embedded 1.1 Container diff --git a/testsuite/internals/base/pom.xml b/testsuite/internals/base/pom.xml index ead838c..cdd84f5 100644 --- a/testsuite/internals/base/pom.xml +++ b/testsuite/internals/base/pom.xml @@ -22,12 +22,12 @@ org.jboss.seam.catch seam-catch-testsuite-integration-internals ../pom.xml - 3.1.0.Beta2 + 3.1.0-SNAPSHOT seam-catch-testsuite-integration-internals-base Seam Catch Test Suite: Internals Integration Tests Base - 3.1.0.Beta2 + 3.1.0-SNAPSHOT jar diff --git a/testsuite/internals/jbossas/pom.xml b/testsuite/internals/jbossas/pom.xml index eb182a8..b4fd95f 100644 --- a/testsuite/internals/jbossas/pom.xml +++ b/testsuite/internals/jbossas/pom.xml @@ -22,10 +22,10 @@ org.jboss.seam.catch seam-catch-testsuite-integration-internals ../pom.xml - 3.1.0.Beta2 + 3.1.0-SNAPSHOT - 3.1.0.Beta2 + 3.1.0-SNAPSHOT seam-catch-testsuite-integration-internals-jbossas Seam Catch Test Suite: Internals Integration Tests for JBoss AS jar diff --git a/testsuite/internals/pom.xml b/testsuite/internals/pom.xml index 259681f..f9cef8c 100644 --- a/testsuite/internals/pom.xml +++ b/testsuite/internals/pom.xml @@ -21,11 +21,11 @@ org.jboss.seam.catch seam-catch-testsuite - 3.1.0.Beta2 + 3.1.0-SNAPSHOT ../pom.xml - 3.1.0.Beta2 + 3.1.0-SNAPSHOT seam-catch-testsuite-integration-internals Seam Catch Test Suite: Internals Integration Tests pom diff --git a/testsuite/internals/weld-ee-embedded/pom.xml b/testsuite/internals/weld-ee-embedded/pom.xml index 4afa09d..c3ed4f4 100644 --- a/testsuite/internals/weld-ee-embedded/pom.xml +++ b/testsuite/internals/weld-ee-embedded/pom.xml @@ -22,10 +22,10 @@ org.jboss.seam.catch seam-catch-testsuite-integration-internals ../pom.xml - 3.1.0.Beta2 + 3.1.0-SNAPSHOT - 3.1.0.Beta2 + 3.1.0-SNAPSHOT seam-catch-testsuite-integration-internals-weld-ee-embedded Seam Catch Test Suite: Internals Integration Tests for Weld EE Embedded diff --git a/testsuite/pom.xml b/testsuite/pom.xml index 7101e22..c562a47 100644 --- a/testsuite/pom.xml +++ b/testsuite/pom.xml @@ -21,10 +21,10 @@ org.jboss.seam.catch seam-catch-parent ../pom.xml - 3.1.0.Beta2 + 3.1.0-SNAPSHOT - 3.1.0.Beta2 + 3.1.0-SNAPSHOT seam-catch-testsuite pom