exclude format for assembly descriptors

2009-07-15 Thread Benson Margulies
This page: 
http://maven.apache.org/plugins/maven-assembly-plugin/examples/single/including-and-excluding-artifacts.html

talks about group:artifact:classifier:version

but all the examples I can find seem to be just filtering filenames.

Are both formats supposed to work?

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: exclude format for assembly descriptors

2009-07-15 Thread David C. Hicks
This is an excerpt from my assembly.xml.  It uses the Maven style
descriptors for inclusion.  Versions are assumed to be those referenced
by the module (or in dependency management).

dependencySets
dependencySet
includes
includecom.allureglobal:salient-war/include
includecom.allureglobal:salient-database-schema/include
includecom.allureglobal:salient-web-services/include
includemysql:mysql-connector-java/include
includeorg.liquibase:liquibase-core/include
/includes
/dependencySet
/dependencySets


Benson Margulies wrote:
 This page: 
 http://maven.apache.org/plugins/maven-assembly-plugin/examples/single/including-and-excluding-artifacts.html

 talks about group:artifact:classifier:version

 but all the examples I can find seem to be just filtering filenames.

 Are both formats supposed to work?

 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org

   

-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org



Re: exclude format for assembly descriptors

2009-07-15 Thread Benson Margulies
Mine now looks like the following, and the last three excludes are
ineffectual in excluding.

dependencySets
dependencySet
  outputDirectorylib/outputDirectory
  unpackfalse/unpack
  scopecompile/scope
  excludes
excludeorg.springframework:*/exclude
excludecom.basistech.rlpj:rlp-bl-lucene2.4/exclude
excludecom.basistech.rlpj:rlp-common/exclude
excludecom.basistech.rlpj:dictionaries/exclude
  /excludes
/dependencySet
  /dependencySets



On Wed, Jul 15, 2009 at 4:14 PM, David C. Hicksdhi...@i-hicks.org wrote:
 This is an excerpt from my assembly.xml.  It uses the Maven style
 descriptors for inclusion.  Versions are assumed to be those referenced
 by the module (or in dependency management).

    dependencySets
        dependencySet
            includes
                includecom.allureglobal:salient-war/include
                includecom.allureglobal:salient-database-schema/include
                includecom.allureglobal:salient-web-services/include
                includemysql:mysql-connector-java/include
                includeorg.liquibase:liquibase-core/include
            /includes
        /dependencySet
    /dependencySets


 Benson Margulies wrote:
 This page: 
 http://maven.apache.org/plugins/maven-assembly-plugin/examples/single/including-and-excluding-artifacts.html

 talks about group:artifact:classifier:version

 but all the examples I can find seem to be just filtering filenames.

 Are both formats supposed to work?

 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org



 -
 To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
 For additional commands, e-mail: users-h...@maven.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@maven.apache.org
For additional commands, e-mail: users-h...@maven.apache.org