iki XMLBeans oluşturmak için nasıl bir projede iki XMLBeans üretmek için çalıştı. Her biri, örneğin, katılımcı nesne alır, bu yüzden onları bir yapılandırma içine koyamıyorum. Yaptığım yol iki eksiltme kullanmaktı, işte benim pom dosyası:bir pom dosyasında
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>xmlbeans-maven-plugin</artifactId>
<version>2.3.3</version>
<executions>
<execution>
<id>xmlbean1</id>
<phase>generate-sources</phase>
<goals>
<goal>xmlbeans</goal>
</goals>
<configuration>
<xmlConfigs>
<xmlConfig implementation="java.io.File">src/main/xsdconfig/xmlbean1</xmlConfig>
</xmlConfigs>
<verbose>true</verbose>
<schemaDirectory>src/main/xsd/xmlbean1</schemaDirectory>
</configuration>
</execution>
<execution>
<id>xmlbean2</id>
<phase>generate-sources</phase>
<goals>
<goal>xmlbeans</goal>
</goals>
<configuration>
<xmlConfigs>
<xmlConfig implementation="java.io.File">src/main/xsdconfig/xmlbean2</xmlConfig>
</xmlConfigs>
<verbose>true</verbose>
<schemaDirectory>src/main/xsd/xmlbean2</schemaDirectory>
</configuration>
</execution>
</executions>
<inherited>true</inherited>
</plugin>
Ama hiç çalışmıyor. Herkes sayesinde
Are herhangi bir hata tehdidi? – drekka
tek XMLBeans işin nesil mu? thoes iki XMLBeans hem böyle katılımcı olarak aynı bileşeni var –
Herkese teşekkürler, ben şu pom iyi çalışıyor, cevap aldım. – Luke