Hi,

I am trying to use the assemble:assemble plugin and have tried to use
<excludes> using 2.1 version of the plugin and 2.2-beta-2 version of
the plugin with filesets, but neither of them work. Can someone please
take a look at this and tell me what I am doing wrong?

The first version of the descriptor with plugin version 2.1 was this:
........
........
<moduleSets>
        <moduleSet>
            <includes>
                <include>FES:AnnotationGrouping</include>
                <include>FES:Common</include>
                <include>FES:Workflow</include>
            </includes>
            <sources>
                <outputDirectory>${artifactId}</outputDirectory>
                <excludes>
                    <exclude>.project</exclude>
                    <exclude>.classpath</exclude>
                    <exclude>.settings</exclude>
                </excludes>
            </sources>
        </moduleSet>
    </moduleSets>
......
......

The 2nd version of the descriptor, following the new 2.2 plugin
version schema, I tried to use filesets:
......
......
<moduleSets>
        <moduleSet>
            <includes>
                <include>FES:AnnotationGrouping</include>
                <include>FES:Common</include>
                <include>FES:ConceptCleaning</include>
                <include>FES:ConceptExtraction</include>
                <include>FES:DocumentSegmentation</include>
                <include>FES:DocumentSummarization</include>
                <include>FES:DomainModel</include>
                <include>FES:Emissary</include>
                <include>FES:EntityNormalization</include>
                <include>FES:FeatureExtraction</include>
                <include>FES:NamedEntityAnnotator</include>
                <include>FES:PartOfSpeechAnnotator</include>
                <include>FES:Persistence</include>
                <include>FES:TokenAnnotator</include>
                <include>FES:Workflow</include>
            </includes>
            <sources>
                <fileSets>
                    <fileSet>
                        <excludes>
                            <exclude>.project</exclude>
                            <exclude>.classpath</exclude>
                            <exclude>.settings</exclude>
                        </excludes>
                    </fileSet>
                </fileSets>
                <outputDirectory>${artifactId}</outputDirectory>
            </sources>
        </moduleSet>
    </moduleSets>


However, in both cases, the .classpath, .project and the .settings
folder is still included in my ZIP... How do I get rid of them???

Thanks,
Yaakov.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to