You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by st...@apache.org on 2017/07/10 12:01:30 UTC

[2/2] deltaspike git commit: also add an OWB2 profile to the servlet module

also add an OWB2 profile to the servlet module


Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/42d156c4
Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/42d156c4
Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/42d156c4

Branch: refs/heads/master
Commit: 42d156c4d9a676de77e3d62581e73a8e0503c836
Parents: c60d78f
Author: Mark Struberg <st...@apache.org>
Authored: Mon Jul 10 14:01:00 2017 +0200
Committer: Mark Struberg <st...@apache.org>
Committed: Mon Jul 10 14:01:00 2017 +0200

----------------------------------------------------------------------
 deltaspike/cdictrl/servlet/pom.xml | 57 ++++++++++++++++++++++++++++++++-
 deltaspike/parent/pom.xml          |  3 ++
 2 files changed, 59 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/deltaspike/blob/42d156c4/deltaspike/cdictrl/servlet/pom.xml
----------------------------------------------------------------------
diff --git a/deltaspike/cdictrl/servlet/pom.xml b/deltaspike/cdictrl/servlet/pom.xml
index 13e9709..e848642 100644
--- a/deltaspike/cdictrl/servlet/pom.xml
+++ b/deltaspike/cdictrl/servlet/pom.xml
@@ -193,7 +193,7 @@
         </profile>
 
         <profile>
-            <!-- use this profile to compile and test DeltaSpike with Apache OpenWebBeans 2.x -->
+            <!-- use this profile to compile and test DeltaSpike with Apache OpenWebBeans 1.5.x and 1.7.x -->
             <id>OWB15</id>
             <dependencies>
                 <dependency>
@@ -247,5 +247,60 @@
             </dependencies>
         </profile>
 
+        <profile>
+            <!-- use this profile to compile and test DeltaSpike with Apache OpenWebBeans 2.x -->
+            <id>OWB2</id>
+            <dependencies>
+                <dependency>
+                    <groupId>org.apache.deltaspike.cdictrl</groupId>
+                    <artifactId>deltaspike-cdictrl-owb</artifactId>
+                    <scope>test</scope>
+                </dependency>
+
+                <!-- OWB specific dependencies-->
+                <dependency>
+                    <groupId>org.apache.geronimo.specs</groupId>
+                    <artifactId>geronimo-atinject_1.0_spec</artifactId>
+                    <scope>provided</scope>
+                </dependency>
+                <dependency>
+                    <!--X TODO move this to dependencyManagement once it is released -->
+                    <groupId>org.apache.geronimo.specs</groupId>
+                    <artifactId>geronimo-jcdi_2.0_spec</artifactId>
+                    <version>${geronimo-jcdi-2.0-spec.version}</version>
+                    <scope>provided</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.geronimo.specs</groupId>
+                    <artifactId>geronimo-interceptor_1.2_spec</artifactId>
+                    <version>${geronimo-interceptor-1.2-spec.version}</version>
+                    <scope>provided</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.geronimo.specs</groupId>
+                    <artifactId>geronimo-annotation_1.3_spec</artifactId>
+                    <version>1.0</version>
+                    <scope>provided</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.geronimo.specs</groupId>
+                    <artifactId>geronimo-el_2.2_spec</artifactId>
+                    <version>1.0.2</version>
+                    <scope>provided</scope>
+                </dependency>
+
+                <dependency>
+                    <groupId>org.apache.openwebbeans</groupId>
+                    <artifactId>openwebbeans-impl</artifactId>
+                    <scope>test</scope>
+                </dependency>
+                <dependency>
+                    <groupId>org.apache.openwebbeans</groupId>
+                    <artifactId>openwebbeans-spi</artifactId>
+                    <scope>test</scope>
+                </dependency>
+            </dependencies>
+        </profile>
+
     </profiles>
 </project>

http://git-wip-us.apache.org/repos/asf/deltaspike/blob/42d156c4/deltaspike/parent/pom.xml
----------------------------------------------------------------------
diff --git a/deltaspike/parent/pom.xml b/deltaspike/parent/pom.xml
index 6a6288b..6e1ed27 100644
--- a/deltaspike/parent/pom.xml
+++ b/deltaspike/parent/pom.xml
@@ -837,6 +837,9 @@
                 <plugin>
                     <artifactId>maven-surefire-plugin</artifactId>
                     <version>${maven.surefire.plugin.version}</version>
+                    <configuration>
+                        <trimStackTrace>false</trimStackTrace>
+                    </configuration>
                     <dependencies>
                         <!-- We need to add this manually to get the category support for JUnit -->
                         <dependency>