| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| |
| Copyright (c) 2021, 2022 Oracle and/or its affiliates. All rights reserved. |
| Copyright (c) 2020 IBM and/or its affiliates. All rights reserved. |
| |
| This program and the accompanying materials are made available under the |
| terms of the Eclipse Public License v. 2.0, which is available at |
| http://www.eclipse.org/legal/epl-2.0. |
| |
| This Source Code may also be made available under the following Secondary |
| Licenses when the conditions for such availability set forth in the |
| Eclipse Public License v. 2.0 are satisfied: GNU General Public License, |
| version 2 with the GNU Classpath Exception, which is available at |
| https://www.gnu.org/software/classpath/license.html. |
| |
| SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 |
| |
| --> |
| |
| <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>org.eclipse.ee4j</groupId> |
| <artifactId>project</artifactId> |
| <version>1.0.7</version> |
| </parent> |
| |
| <groupId>jakarta.json.bind</groupId> |
| <artifactId>jakarta.json.bind-tck</artifactId> |
| <version>3.0.0-SNAPSHOT</version> |
| <packaging>jar</packaging> |
| |
| <name>JSON-B TCK</name> |
| <description>Jakarta JSON Binding TCK Tests</description> |
| |
| <licenses> |
| <license> |
| <name>Eclipse Public License 2.0</name> |
| <url>https://projects.eclipse.org/license/epl-2.0</url> |
| <distribution>repo</distribution> |
| </license> |
| <license> |
| <name>GNU General Public License, version 2 with the GNU Classpath Exception</name> |
| <url>https://projects.eclipse.org/license/secondary-gpl-2.0-cp</url> |
| <distribution>repo</distribution> |
| </license> |
| </licenses> |
| |
| <properties> |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| <maven.compiler.target>11</maven.compiler.target> |
| <maven.compiler.source>11</maven.compiler.source> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>jakarta.json.bind</groupId> |
| <artifactId>jakarta.json.bind-api</artifactId> |
| <version>3.0.0-SNAPSHOT</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>jakarta.json</groupId> |
| <artifactId>jakarta.json-api</artifactId> |
| <version>2.1.0</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>jakarta.inject</groupId> |
| <artifactId>jakarta.inject-api</artifactId> |
| <version>2.0.0</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>jakarta.enterprise</groupId> |
| <artifactId>jakarta.enterprise.cdi-api</artifactId> |
| <version>3.0.0</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter-api</artifactId> |
| <version>5.6.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter-engine</artifactId> |
| <version>5.6.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.hamcrest</groupId> |
| <artifactId>hamcrest</artifactId> |
| <version>2.2</version> |
| </dependency> |
| <dependency> |
| <groupId>org.netbeans.tools</groupId> |
| <artifactId>sigtest-maven-plugin</artifactId> |
| <version>1.4</version> |
| </dependency> |
| </dependencies> |
| |
| <!-- TODO: Temporarily enable snapshot repository --> |
| <repositories> |
| <repository> |
| <id>jakarta-snapshots</id> |
| <url>https://jakarta.oss.sonatype.org/content/repositories/staging/</url> |
| </repository> |
| </repositories> |
| |
| |
| <build> |
| <plugins> |
| <!-- |
| <plugin> |
| <groupId>org.netbeans.tools</groupId> |
| <artifactId>sigtest-maven-plugin</artifactId> |
| <version>1.4</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>generate</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <FileName>${project.build.directory}/jakarta.json.bind.sig_${version}</FileName> |
| <packages>"jakarta.json.bind","jakarta.json.bind.adapter","jakarta.json.bind.annotation","jakarta.json.bind.config","jakarta.json.bind.serializer","jakarta.json.bind.spi"</packages> |
| </configuration> |
| </plugin> |
| --> |
| <plugin> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <configuration> |
| <doclint>none</doclint> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.glassfish.copyright</groupId> |
| <artifactId>glassfish-copyright-maven-plugin</artifactId> |
| <version>2.4</version> |
| <configuration> |
| <excludeFile>${basedir}/../etc/config/copyright-exclude</excludeFile> |
| <scm>git</scm> |
| <debug>false</debug> |
| <scmOnly>true</scmOnly> |
| <warn>false</warn> |
| <!-- for use with repair --> |
| <update>false</update> |
| <!-- check that year is correct --> |
| <ignoreYear>false</ignoreYear> |
| <templateFile>${basedir}/../etc/config/epl-copyright.txt</templateFile> |
| <bsdTemplateFile>${basedir}/../etc/config/edl-copyright.txt</bsdTemplateFile> |
| </configuration> |
| <executions> |
| <execution> |
| <goals> |
| <goal>copyright</goal> |
| <goal>check</goal> |
| </goals> |
| <phase>compile</phase> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-source-plugin</artifactId> |
| <executions> |
| <execution> |
| <id>attach-sources</id> |
| <goals> |
| <goal>jar-no-fork</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |