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

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

Remo created DELTASPIKE-1191:
--------------------------------

             Summary: 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


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)