legstar-jaxb-generator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.legsem.legstar</groupId>
<artifactId>legstar-jaxb-generator</artifactId>
<version>3.0.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.legsem.legstar</groupId>
<artifactId>legstar-parent</artifactId>
<version>3.0.1</version>
</parent>
<artifactId>legstar-jaxb-generator</artifactId>
<name>legstar-jaxb-generator</name>
<description>Generates COBOL and XML annotated JAVA beans from COBOL copybooks</description>
<dependencies>
<dependency>
<groupId>com.legsem.legstar</groupId>
<artifactId>legstar-generator</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
</dependency>
<dependency>
<groupId>com.legsem.legstar</groupId>
<artifactId>legstar-base-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>gg.jte</groupId>
<artifactId>jte-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<sourceDirectory>
${project.basedir}/src/main/templates</sourceDirectory>
<targetDirectory>
${project.build.directory}/generated-sources</targetDirectory>
<contentType>Plain</contentType>
<packageName>org.legstar.cobol.jaxb.generator.templates</packageName>
<trimControlStructures>true</trimControlStructures>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>
${project.build.directory}/generated-sources</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<excludePackageNames>org.legstar.cobol.jaxb.generator.templates</excludePackageNames>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<excludePackageNames>org.legstar.cobol.jaxb.generator.templates</excludePackageNames>
</configuration>
</plugin>
</plugins>
</reporting>
</project>