| <!-- |
| |
| Copyright (c) 2017 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>org.glassfish.jsonp</groupId> |
| <artifactId>demos</artifactId> |
| <version>1.1.6-SNAPSHOT</version> |
| <relativePath>../pom.xml</relativePath> |
| </parent> |
| |
| <url>http://maven.apache.org</url> |
| <artifactId>customprovider-jdk9</artifactId> |
| |
| <name>customprovider-jdk9</name> |
| |
| <properties> |
| <mod.dir>${project.build.directory}/mods</mod.dir> |
| </properties> |
| <build> |
| <finalName>customprovider-jdk9</finalName> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-dependency-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>prepare-endorsed</id> |
| <phase>validate</phase> |
| <goals> |
| <goal>copy-dependencies</goal> |
| </goals> |
| <configuration> |
| <outputDirectory>${mod.dir}</outputDirectory> |
| <silent>false</silent> |
| <!--<scope>compile</scope>--> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <version>2.20</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>test</goal> |
| </goals> |
| <id>test</id> |
| </execution> |
| </executions> |
| <configuration> |
| <argLine> |
| --module-path ${project.build.directory}/classes:${mod.dir}:${project.build.directory}/test-classes |
| --add-modules org.glassfish.java.json.demos.customprovider |
| </argLine> |
| <!-- |
| - -add-modules org.glassfish.java.json.demos.customprovider,org.glassfish.java.json,junit |
| - -patch-module org.glassfish.java.json.demos.customprovider=${project.build.directory}/test-classes |
| --> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| <dependencies> |
| <dependency> |
| <groupId>jakarta.json</groupId> |
| <artifactId>jakarta.json-api</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.hamcrest</groupId> |
| <artifactId>hamcrest-core</artifactId> |
| <version>1.3</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| </project> |