Here is the build element of my testing pom.xml:
<build>
<plugins>
<plugin>
<groupId>org.apache.ws.jaxme</groupId>
<artifactId>maven-jaxme-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>jaxme</goal>
</goals>
</execution>
</executions>
<configuration>
<schema>
<value>src/xsd/*.xsd</value>
</schema>
<packageName>com.foo.bar</packageName>
</configuration>
</plugin>
</plugins>
</build>
For some reason, the plugin is not picking up my XSD in src/xsd. It complains
that it can't find it in src/jaxme. When I move it to src/jaxme, I get this
error:
[INFO] At file:/C:/dev/foo-maven/foo/src/jaxme/foo.xsd, line 2
0: Unable to derive package name from an empty namespace URI. Use the schemaBind
ings to specify a package name.
Pardon my ignorance...this is my first stab at Maven.
Thanks!
Robert
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]