Skip to content

Instantly share code, notes, and snippets.

@robsonkades
Created August 28, 2023 18:04
Show Gist options
  • Save robsonkades/1a48502bfb43b3a886873e5e2dcf0f88 to your computer and use it in GitHub Desktop.
Save robsonkades/1a48502bfb43b3a886873e5e2dcf0f88 to your computer and use it in GitHub Desktop.
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>xjc</id>
<goals>
<goal>xjc</goal>
</goals>
<configuration>
<verbose>true</verbose>
<sources>
<source>src/main/resources/schemas/distDFeInt_v1.01.xsd</source>
<source>src/main/resources/schemas/resEvento_v1.01.xsd</source>
<source>src/main/resources/schemas/resNFe_v1.01.xsd</source>
<source>src/main/resources/schemas/retDistDFeInt_v1.01.xsd</source>
<source>src/main/resources/schemas/tiposDistDFe_v1.01.xsd</source>
<source>src/main/resources/schemas/xmldsig-core-schema_v1.01.xsd</source>
</sources>
<addGeneratedAnnotation>true</addGeneratedAnnotation>
<clearOutputDir>false</clearOutputDir>
<noGeneratedHeaderComments>true</noGeneratedHeaderComments>
<encoding>UTF-8</encoding>
<packageName>com.example.demo.client.gen.dfe</packageName>
<extension>true</extension>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment