| <?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 REST 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>1.8</maven.compiler.source> | 
 |         <maven.compiler.target>1.8</maven.compiler.target> | 
 |     </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> | 
 |  | 
 |     <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-api</artifactId> | 
 |             <version>[5.5.2, 5.6-A00)</version> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>org.hamcrest</groupId> | 
 |             <artifactId>hamcrest-library</artifactId> | 
 |             <version>[2.2, 2.3-A00)</version> | 
 |         </dependency> | 
 |     </dependencies> | 
 | </project> |