これは私のプラグインです:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<executions>
<execution>
<id>schemagen</id>
<goals>
<goal>schemagen</goal>
</goals>
</execution>
</executions>
</plugin>
そして、これはルート要素です:
@XmlRootElement(name = "FooBar")
@XmlAccessorType(XmlAccessType.FIELD)
public class FooBarEnvelope {
//other elements not listed
}
Maven を実行すると、次の xsd が生成されます。
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xs:schema version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="FooBar" type="FooBarEnvelope"/>
<!-- other elements -->
</xs:schema>
それはうまく機能しますが、今はスキーマのバージョンを設定したいと思います:
<xs:schema version="5.2.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
どうやってやるの?