META-INF.maven.org.glassfish.jaxb.jaxb-runtime.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaxb-impl Show documentation
Show all versions of jaxb-impl Show documentation
Old JAXB Runtime module. Contains sources required for runtime processing.
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2013, 2020 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>com.sun.xml.bind.mvn</groupId> <artifactId>jaxb-runtime-parent</artifactId> <version>3.0.0-M5</version> <relativePath>../pom.xml</relativePath> </parent> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> <packaging>jar</packaging> <name>JAXB Runtime</name> <description>JAXB (JSR 222) Reference Implementation</description> <properties> <spotbugs.exclude>${project.basedir}/exclude-runtime.xml</spotbugs.exclude> <argLine> --add-opens org.glassfish.jaxb.runtime/org.glassfish.jaxb.runtime.v2=org.glassfish.jaxb.core --add-opens org.glassfish.jaxb.runtime/org.glassfish.jaxb.runtime.v2.schemagen=org.glassfish.jaxb.core --add-opens java.base/java.lang=org.glassfish.jaxb.runtime --add-opens java.base/java.lang.reflect=org.glassfish.jaxb.runtime --add-opens org.glassfish.jaxb.runtime/org.glassfish.jaxb.runtime.v2.runtime.reflect.opt=org.glassfish.jaxb.core </argLine> </properties> <dependencies> <dependency> <groupId>com.sun.activation</groupId> <artifactId>jakarta.activation</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>jaxb-core</artifactId> </dependency> <dependency> <groupId>org.jvnet.staxex</groupId> <artifactId>stax-ex</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.sun.xml.fastinfoset</groupId> <artifactId>FastInfoset</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <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> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <executions> <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.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Implementation-Vendor>${vendor.name}</Implementation-Vendor> <Implementation-Vendor-Id>${project.groupId}</Implementation-Vendor-Id> <Implementation-Build-Id>${project.version} - ${buildNumber}</Implementation-Build-Id> <Multi-Release>true</Multi-Release> <Export-Package> !META-INF.*, * </Export-Package> </instructions> </configuration> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <workingDirectory>target/test-out</workingDirectory> <forkCount>1</forkCount> <reuseForks>true</reuseForks> </configuration> </plugin> <!-- Run tests on multi-release jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <executions> <execution> <goals> <goal>integration-test</goal> <goal>verify</goal> </goals> </execution> </executions> <configuration> <trimStackTrace>false</trimStackTrace> <systemProperties> <property> <name>java.util.logging.config.file</name> <value>logging.properties</value> </property> </systemProperties> <argLine> --add-opens java.base/java.lang=org.glassfish.runtime --add-opens org.glassfish.jaxb.runtime/org.glassfish.jaxb.runtime.v2=jakarta.xml.bind --add-opens org.glassfish.jaxb.runtime/org.glassfish.jaxb.runtime.v2.schemagen=jakarta.xml.bind </argLine> <includes> <include>**/*TestMultiRelease.java</include> </includes> </configuration> </plugin> </plugins> </build> </project>