8

我想让maven-jaxb2-plugin不要写“免责声明”:

This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.2-hudson-jaxb-ri-2.2-63- 
See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
Any modifications to this file will be lost upon recompilation of the source schema. 
Generated on: 2011.08.01 at 09:20:43 AM CEST 

至少是时间戳。

谢谢你。

你做。

4

3 回答 3

9

如果您使用-no-header命令行源生成器或header='false'使用 ant,请使用。

在 pom 中,在配置中<args><arg>-no-header</arg></args>

于 2011-08-01T14:10:47.887 回答
9

补充一下,我使用 Maven,对我有用的是:

<arguments>-no-header</arguments> 
于 2012-07-17T18:13:57.920 回答
5

使用“noGeneratedHeaderComments”示例:

            <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>jaxb2-maven-plugin</artifactId>
            <version>2.1</version>
            <executions>
                <execution>
                    <id>xjc</id>
                    <goals>
                        <goal>xjc</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <outputDirectory>${project.basedir}/src/main/java</outputDirectory>
                <clearOutputDir>false</clearOutputDir>
                <sources>
                    <source>${project.basedir}/src/main/resources/xsd</source>
                </sources>      
                <noGeneratedHeaderComments>true</noGeneratedHeaderComments>
            </configuration>
        </plugin>  
于 2015-05-24T20:15:23.023 回答