You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@deltaspike.apache.org by "John D. Ament (JIRA)" <ji...@apache.org> on 2016/08/13 13:00:24 UTC

[jira] [Commented] (DELTASPIKE-1191) Update Test-Control gradle docs

    [ https://issues.apache.org/jira/browse/DELTASPIKE-1191?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15419911#comment-15419911 ] 

John D. Ament commented on DELTASPIKE-1191:
-------------------------------------------

hi [~remom], just wondering what version of gradle are you using?  AFAIK exclude is the default.

> Update Test-Control gradle docs
> -------------------------------
>
>                 Key: DELTASPIKE-1191
>                 URL: https://issues.apache.org/jira/browse/DELTASPIKE-1191
>             Project: DeltaSpike
>          Issue Type: Bug
>          Components: Documentation
>            Reporter: Remo
>            Assignee: John D. Ament
>
> The suggested solution for gradle/test-control in https://deltaspike.apache.org/documentation/test-control.html results in duplicate class files in the assembled jars, this should be used instead:
> // merge resources and classes dir since we are doing JEE/CDI
> sourceSets {
>     main {
>         output.resourcesDir = 'build/classes/main'
>         output.classesDir   = 'build/classes/main'
>     }
>     test {
>         output.resourcesDir = 'build/classes/test'
>         output.classesDir   = 'build/classes/test'
>     }
> }
> // exclude duplicates since we merge classes and resources dir
> jar {
>     duplicatesStrategy = DuplicatesStrategy.EXCLUDE
> }



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