kbl-v25
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.foursoft.harness.kbl</groupId> <artifactId>kbl-v25</artifactId> <version>3.0.2</version> </dependency>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" 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.foursoft.harness.kbl</groupId> <artifactId>kbl-parent</artifactId> <version>3.0.2</version> </parent> <artifactId>kbl-v25</artifactId> <description>The model for KBL version 2.5</description> <dependencies> <!--project--> <dependency> <groupId>${project.groupId}</groupId> <artifactId>kbl-common</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>jakarta.xml.bind</groupId> <artifactId>jakarta.xml.bind-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.foursoft.jaxb.navext</groupId> <artifactId>navext-runtime</artifactId> </dependency> <dependency> <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> </dependency> <!--logging--> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- test --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jul-to-slf4j</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <defaultGoal>install</defaultGoal> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> </plugin> <plugin> <groupId>org.jvnet.jaxb2.maven2</groupId> <artifactId>maven-jaxb2-plugin</artifactId> <executions> <execution> <id>generate-kbl25</id> <phase>generate-sources</phase> <goals> <goal>generate</goal> </goals> <configuration> <encoding>UTF-8</encoding> <packageLevelAnnotations>false</packageLevelAnnotations> <schemaIncludes> <include>kbl25/KBL25_SR1.xsd</include> </schemaIncludes> <bindingIncludes> <include>kbl25/*.xjb</include> </bindingIncludes> <extension>true</extension> <args> <arg>-Xannotate</arg> <arg>-Xdelegate</arg> <arg>-Xext-navs</arg> <arg>-Xjavadoc</arg> <arg>-Xinheritance</arg> <arg>-Xinject-code</arg> <arg>-Xvisitor</arg> <arg>-Xvisitor-noIdrefTraversal</arg> <arg>-Xvisitor-includeType</arg> <arg>-Xvisitor-package:com.foursoft.harness.kbl.v25.visitor</arg> <arg>-Xnull-empty-lists</arg> </args> <generateDirectory>${project.build.directory}/generated-sources/xjc-kbl25 </generateDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>