Where to specify fileset for multiple schema files with plugin xmlbeans 
for m2??
Right now im using something like this, but i doesen't work. 
Please help.


<plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>xmlbeans-maven-plugin</artifactId>
          <executions>
                <execution>
                <phase>generate-sources</phase>
 
                        <goals>
                                <goal>xmlbeans</goal>
                        </goals>
                </execution>
        </executions>
        <inherited>true</inherited>
        <configuration>
 
                <memoryInitialSize>8m</memoryInitialSize>
                <memoryMaximumSize>256m</memoryMaximumSize>
                <debug>true</debug>
                <verbose>true</verbose>
                <failonerror>true</failonerror>
 
                <fileset dir="src/xsd" includes="**/*.xsd"/>
                <fileset dir="src/java" includes="**/*.*"/>
 
        </configuration>
      </plugin>
        </plugins>

Thanks!
Sebastian BÅ‚och

Reply via email to