| <?xml version="1.0" encoding="UTF-8" ?> |
| <!-- |
| |
| Copyright (c) 2020 Markus Karg. 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> |
| |
| <groupId>jakarta.ws.rs</groupId> |
| <artifactId>jakarta.ws.rs-tck</artifactId> |
| <version>3.1-SNAPSHOT</version> |
| |
| <name>Jakarta RESTful WS TCK</name> |
| <description>Technology Compatibility Kit for Jakarta RESTful Web Services</description> |
| <url>https://github.com/eclipse-ee4j/jaxrs-api</url> |
| |
| <properties> |
| <maven.compiler.source>11</maven.compiler.source> |
| <maven.compiler.target>11</maven.compiler.target> |
| <junit.jupiter.version>[5.7.2, 5.8-A00)</junit.jupiter.version> |
| </properties> |
| |
| <organization> |
| <name>Eclipse Foundation</name> |
| <url>https://www.eclipse.org/org/foundation/</url> |
| </organization> |
| |
| <developers> |
| <developer> |
| <id>developers</id> |
| <name>JAX-RS API Developers</name> |
| <email>jaxrs-dev@eclipse.org</email> |
| <url>https://github.com/eclipse-ee4j/jaxrs-api/graphs/contributors</url> |
| </developer> |
| </developers> |
| |
| <issueManagement> |
| <system>Github</system> |
| <url>https://github.com/eclipse-ee4j/jaxrs-api/issues</url> |
| </issueManagement> |
| |
| <mailingLists> |
| <mailingList> |
| <name>JAX-RS Developer Discussions</name> |
| <archive>jaxrs-dev@eclipse.org</archive> |
| </mailingList> |
| </mailingLists> |
| |
| <licenses> |
| <license> |
| <name>EPL-2.0</name> |
| <url>http://www.eclipse.org/legal/epl-2.0</url> |
| <distribution>repo</distribution> |
| </license> |
| <license> |
| <name>GPL-2.0-with-classpath-exception</name> |
| <url>https://www.gnu.org/software/classpath/license.html</url> |
| <distribution>repo</distribution> |
| </license> |
| </licenses> |
| |
| <scm> |
| <connection>scm:git:https://github.com/eclipse-ee4j/jaxrs-api</connection> |
| <url>https://github.com/eclipse-ee4j/jaxrs-api</url> |
| <tag>HEAD</tag> |
| </scm> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>2.3.2</version> |
| </plugin> |
| <plugin> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <version>3.0.0-M5</version> |
| </plugin> |
| |
| </plugins> |
| </build> |
| |
| <dependencies> |
| <dependency> |
| <groupId>jakarta.ws.rs</groupId> |
| <artifactId>jakarta.ws.rs-api</artifactId> |
| <version>3.1-SNAPSHOT</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter</artifactId> |
| <version>${junit.jupiter.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.junit.platform</groupId> |
| <artifactId>junit-platform-launcher</artifactId> |
| <version>1.7.2</version> |
| <scope>test</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>commons-httpclient</groupId> |
| <artifactId>commons-httpclient</artifactId> |
| <version>3.1</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.hamcrest</groupId> |
| <artifactId>hamcrest-library</artifactId> |
| <version>[2.2, 2.3-A00)</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.jboss.arquillian.junit5</groupId> |
| <artifactId>arquillian-junit5-container</artifactId> |
| <version>1.7.0.Alpha10</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>jakarta.annotation</groupId> |
| <artifactId>jakarta.annotation-api</artifactId> |
| <version>2.0.0</version> |
| </dependency> |
| |
| </dependencies> |
| </project> |