You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@deltaspike.apache.org by "Juliano Marques (JIRA)" <ji...@apache.org> on 2014/09/11 02:12:34 UTC

[jira] [Created] (DELTASPIKE-715) Documentation - Wrong Maven artifact scopes for Test Control Module

Juliano Marques created DELTASPIKE-715:
------------------------------------------

             Summary: Documentation - Wrong Maven artifact scopes for Test Control Module
                 Key: DELTASPIKE-715
                 URL: https://issues.apache.org/jira/browse/DELTASPIKE-715
             Project: DeltaSpike
          Issue Type: Bug
          Components: Documentation
            Reporter: Juliano Marques


In https://deltaspike.apache.org/test-control.html:
<dependency>
    <groupId>org.apache.deltaspike.modules</groupId>
    <artifactId>deltaspike-test-control-module-api</artifactId>
    <version>${ds.version}</version>
    <scope>test</scope>
</dependency>

<dependency>
    <groupId>org.apache.deltaspike.modules</groupId>
    <artifactId>deltaspike-test-control-module-impl</artifactId>
    <version>${ds.version}</version>
    <scope>test</scope>
</dependency>

In https://deltaspike.apache.org/documentation.html#test-control-module(wrong):
<dependency>
    <groupId>org.apache.deltaspike.modules</groupId>
    <artifactId>deltaspike-test-control-module-api</artifactId>
    <version>${deltaspike.version}</version>
    <scope>compile</scope> <-- Here, is the problem.
</dependency>

<dependency>
    <groupId>org.apache.deltaspike.modules</groupId>
    <artifactId>deltaspike-test-control-module-impl</artifactId>
    <version>${deltaspike.version}</version>
    <scope>runtime</scope> <-- Here, is the problem.
</dependency>



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)