You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltaspike.apache.org by gp...@apache.org on 2019/03/17 20:39:42 UTC

[deltaspike] branch master updated: DELTASPIKE-1372 Fix test-control's dependencies.

This is an automated email from the ASF dual-hosted git repository.

gpetracek pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/deltaspike.git


The following commit(s) were added to refs/heads/master by this push:
     new 4dca77e  DELTASPIKE-1372 Fix test-control's dependencies.
     new fcb567c  Merge pull request #86 from j-be/DELTASPIKE-1372
4dca77e is described below

commit 4dca77e08d0ff56d3c34ef9079d5727c3bd2c801
Author: Juri Berlanda <ju...@tuwien.ac.at>
AuthorDate: Wed Mar 13 16:43:09 2019 +0100

    DELTASPIKE-1372 Fix test-control's dependencies.
    
    Test-Control module has a de-facto runtime dependency on core-impl, which
    is neither documented, nor declared in the pom. This commit adds it so
    Test-Control works as described in the documentation.
---
 deltaspike/modules/test-control/impl/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/deltaspike/modules/test-control/impl/pom.xml b/deltaspike/modules/test-control/impl/pom.xml
index 68df2fa..b040940 100644
--- a/deltaspike/modules/test-control/impl/pom.xml
+++ b/deltaspike/modules/test-control/impl/pom.xml
@@ -116,7 +116,7 @@
         <dependency>
             <groupId>org.apache.deltaspike.core</groupId>
             <artifactId>deltaspike-core-impl</artifactId>
-            <scope>test</scope>
+            <scope>runtime</scope>
         </dependency>
     </dependencies>