Пропустить Сгенерированные на ... в файлах Java с помощью плагина jaxb2 maven - PullRequest
8 голосов
/ 01 августа 2011

Я бы хотел получить 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 

Как минимум, отметка времени.

Спасибо.

Udo.

Ответы [ 3 ]

8 голосов
/ 17 июля 2012

Просто добавлю, я использую Maven, и у меня получилось:

<arguments>-no-header</arguments> 
8 голосов
/ 01 августа 2011

Используйте -no-header, если вы используете генератор исходного кода командной строки, или header='false', если вы используете ant.

В pom, в конфигурации <args><arg>-no-header</arg></args>

4 голосов
/ 24 мая 2015

используйте "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>  
...