META-INF.maven.cn.lzgabel.jaxb.jaxb-jxc.pom.xml Maven / Gradle / Ivy
The newest version!
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2013, 2021 Oracle and/or its affiliates. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Distribution License v. 1.0, which is available at http://www.eclipse.org/org/documents/edl-v10.php. SPDX-License-Identifier: BSD-3-Clause --> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>cn.lzgabel.jaxb.xml.bind.mvn</groupId> <artifactId>jaxb-parent</artifactId> <version>4.0.0</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>cn.lzgabel.jaxb</groupId> <artifactId>jaxb-jxc</artifactId> <packaging>jar</packaging> <name>JAXB JXC</name> <description> JAXB schema generator.The *tool* to generate XML schema based on java classes. <!--todo: finish me--> </description> <url>https://eclipse-ee4j.github.io/jaxb-ri/</url> <properties> <spotbugs.exclude>${project.basedir}/exclude-jxc.xml</spotbugs.exclude> <argLine> --add-opens cn.lzgabel.jaxb.jxc/com.sun.tools.jxc.ap=ALL-UNNAMED --add-opens cn.lzgabel.jaxb.jxc/com.sun.tools.jxc=ALL-UNNAMED --module-path "${module.path}" -Djdk.attach.allowAttachSelf </argLine> <jdoc.doclint>all</jdoc.doclint> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>jaxb-runtime</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>jaxb-xjc</artifactId> </dependency> <dependency><!-- Ant is provided through transitive dependency from XJC. But to be consistent we have it also here --> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>com.sun.org.apache.xml.internal</groupId> <artifactId>resolver</artifactId> <scope>provided</scope> <!--Not needed starting from JavaSE 11--> <optional>true</optional> </dependency> <!-- CQ #20807 --> <dependency> <groupId>org.checkerframework</groupId> <artifactId>compiler</artifactId> <scope>provided</scope> <optional>true</optional> </dependency> <dependency> <groupId>org.jmockit</groupId> <artifactId>jmockit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> <resource> <directory>src/main/schemas</directory> <filtering>false</filtering> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-schemagen</id> <phase>validate</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/schemagen-cp</outputDirectory> <includeArtifactIds> jakarta.activation-api,angus-activation,jakarta.xml.bind-api, jaxb-core,jaxb-runtime,jaxb-xjc, stax-ex,istack-commons-runtime,istack-commons-tools,dtd-parser, rngom,relaxng-datatype,xsom,codemodel,txw2 </includeArtifactIds> </configuration> </execution> <execution> <id>copy-ant</id> <phase>validate</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/lib/ant</outputDirectory> <includeArtifactIds>ant,ant-launcher</includeArtifactIds> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <java.io.tmpdir>${project.build.directory}/test-antprojects</java.io.tmpdir> <bin.folder>${project.build.directory}</bin.folder> </systemPropertyVariables> <forkCount>1</forkCount> <reuseForks>true</reuseForks> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-mr-resource</id> <phase>prepare-package</phase> <goals> <goal>add-resource</goal> </goals> <configuration> <resources> <resource> <directory>${mrjar.sourceDirectory}</directory> <targetPath>META-INF/versions</targetPath> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Multi-Release>true</Multi-Release> </manifestEntries> <manifest> <addDefaultEntries>false</addDefaultEntries> <mainClass>com.sun.tools.jxc.SchemaGeneratorFacade</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-compile</id> <configuration> <compilerArgs> <arg>--add-reads</arg> <arg>cn.lzgabel.jaxb.jxc=ALL-UNNAMED</arg> <arg>--add-reads</arg> <arg>com.sun.istack.tools=ALL-UNNAMED</arg> </compilerArgs> </configuration> </execution> <execution> <id>default-compile-mr</id> <goals> <goal>compile</goal> </goals> <configuration> <compileSourceRoots> <compileSourceRoot>${mrjar.sourceDirectory}/${upper.java.level}</compileSourceRoot> </compileSourceRoots> <outputDirectory>${project.build.outputDirectory}/META-INF/versions/${upper.java.level}</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <configuration> <archive> <manifestEntries> <Multi-Release>true</Multi-Release> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <additionalJOptions> <additionalJOption>--add-reads</additionalJOption> <additionalJOption>cn.lzgabel.jaxb.jxc=ALL-UNNAMED</additionalJOption> <additionalJOption>--add-reads</additionalJOption> <additionalJOption>com.sun.istack.tools=ALL-UNNAMED</additionalJOption> </additionalJOptions> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>coverage</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <excludes> <exclude>**/ApNavigatorTest.java</exclude> <exclude>**/SchemaGeneratorTest.java</exclude> </excludes> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>