You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@maven.apache.org by ne...@imail.de on 2007/06/04 15:39:22 UTC

isXX vs getXX- Plugin tag is not read

Hello again,

here is plugin Tag from my .pom file:

<plugin>
				<groupId>com.sun.tools.xjc.maven2</groupId>
				<artifactId>maven-jaxb-plugin</artifactId>
				<executions>
					<execution>
						<goals>
						<goal>generate</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
						<schemaDirectory>src/main/xsd</schemaDirectory>
						<includeSchemas>
							<!--includeSchema>**/*.xsd</includeSchema-->
							<!--includeSchema>**/*.dtd</includeSchema-->
							<!--includeSchema>playground/ComplexTypes.xsd</includeSchema-->
							<includeSchema>Order/CustomerOrder.xsd</includeSchema>
							<includeSchema>Order/CustomerAs.xsd</includeSchema>
						</includeSchemas>
						<args>-Xboolean-getter</args>		<!----------------- does not work : dont know why? -->					
						<catalog>${xml-catalog-file}</catalog>
					<!--excludeSchemas>
						<excludeSchema>playground/*.xsd</excludeSchema>
						</excludeSchemas-->
					<includeBindings>
							<!--includeBinding>*.xjb</includeBinding-->
					</includeBindings>
					<verbose>true</verbose>        
				</configuration>
				<dependencies>
						<dependency>
							<groupId>jaxb2_commons</groupId>
							<artifactId>booleangetter</artifactId>
							<version>1.0</version>
						</dependency>
					</dependencies>	
			</plugin>

Any help
Thanks,
Ned