AFAIK, the configuration tag will use reflection to load your settings.
So your tags and classes must comply to the javabeans naming conventions.
(see section A.2.3, p2.6.1 of the Mergere book)

I do not really know the fileset class structure, but it should be
straightforward to compare with the xml structure.
By the way, it would be great if it matches!
let me know.

Alexis

On 9/6/06, fabrice.j <[EMAIL PROTECTED]> wrote:


Hi,

i know maven but i'm a newbie in maven2 plugin development

i'm trying to develop a maven-plugin and i was wondering if it was
possible
to define a plugin parameter with a <fileset> like in ant


sample :

<build>
   ...
   <plugins>
       <plugin>
            <groupId>com.mergere.mvnbook.plugins</groupId>
            <artifactId>maven-buildinfo-plugin</artifactId>
            <executions>
                      <execution>
                           <id>extract</id>
                           <configuration>
                                 <!-- fileset parameter -->
                                 <fileset dir="mydir">
                                      <include name="**/*.java"/>
                                      <exclude name="**/*Test*"/>
                                 </fileset>
                           </configuration>

         </plugin>

Thanks,
Fabrice
--
View this message in context:
http://www.nabble.com/plugin-configuration-with-a-fileset-possible---tf2228329.html#a6175457
Sent from the Maven - Users forum at Nabble.com.


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


Reply via email to