| <?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> | 
 |  | 
 |     <artifactId>jakarta-restful-ws-tck</artifactId> | 
 |     <name>Jakarta RESTful WS TCK</name> | 
 |     <description>Technology Compatibility Kit for Jakarta RESTful Web Services</description> | 
 |     <url>https://github.com/jakartaee/rest</url> | 
 |     <version>3.1.2</version> | 
 |  | 
 |     <parent> | 
 |         <groupId>jakarta.ws.rs</groupId> | 
 |         <artifactId>all</artifactId> | 
 |         <version>3.1.0</version> | 
 |     </parent> | 
 |  | 
 |     <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> | 
 |         <tck.artifactId>jakarta-restful-ws-tck</tck.artifactId> | 
 |     </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> | 
 |  | 
 |     <profiles> | 
 |         <profile> | 
 |             <id>record-signature</id> | 
 |             <activation> | 
 |                 <activeByDefault>false</activeByDefault> | 
 |             </activation> | 
 |             <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.ws.rs.sig_${project.parent.version}</FileName> | 
 |                             <packages> | 
 |                                 jakarta.ws.rs,jakarta.ws.rs.client,jakarta.ws.rs.core,jakarta.ws.rs.container,jakarta.ws.rs.ext,jakarta.ws.rs.sse | 
 |                             </packages> | 
 |                         </configuration> | 
 |                     </plugin> | 
 |                 </plugins> | 
 |             </build> | 
 |         </profile> | 
 |  | 
 |         <profile> | 
 |             <id>tck-build</id> | 
 |             <activation> | 
 |                 <activeByDefault>true</activeByDefault> | 
 |             </activation> | 
 |             <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> | 
 |                     <plugin> | 
 |                         <groupId>org.apache.maven.plugins</groupId> | 
 |                         <artifactId>maven-jar-plugin</artifactId> | 
 |                         <version>3.2.0</version> | 
 |                     </plugin> | 
 |                     <plugin> | 
 |                         <groupId>org.apache.maven.plugins</groupId> | 
 |                         <artifactId>maven-source-plugin</artifactId> | 
 |                         <executions> | 
 |                             <execution> | 
 |                                 <id>attach-sources</id> | 
 |                                 <goals> | 
 |                                     <goal>jar</goal> | 
 |                                 </goals> | 
 |                             </execution> | 
 |                         </executions> | 
 |                     </plugin> | 
 |  | 
 |                 </plugins> | 
 |             </build> | 
 |         </profile> | 
 |  | 
 |  | 
 |     </profiles> | 
 |     <dependencies> | 
 |         <dependency> | 
 |             <groupId>jakarta.ws.rs</groupId> | 
 |             <artifactId>jakarta.ws.rs-api</artifactId> | 
 |             <version>${project.parent.version}</version> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>jakarta.json.bind</groupId> | 
 |             <artifactId>jakarta.json.bind-api</artifactId> | 
 |             <version>2.0.0</version> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>jakarta.json</groupId> | 
 |             <artifactId>jakarta.json-api</artifactId> | 
 |             <version>2.0.1</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.1.0-B1</version> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>jakarta.xml.bind</groupId> | 
 |             <artifactId>jakarta.xml.bind-api</artifactId> | 
 |             <version>4.0.0-RC2</version> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>jakarta.activation</groupId> | 
 |             <artifactId>jakarta.activation-api</artifactId> | 
 |             <version>2.1.0-RC1</version> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>jakarta.servlet</groupId> | 
 |             <artifactId>jakarta.servlet-api</artifactId> | 
 |             <version>5.0.0</version> | 
 |             <scope>provided</scope> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>org.netbeans.tools</groupId> | 
 |             <artifactId>sigtest-maven-plugin</artifactId> | 
 |             <version>1.4</version> | 
 |         </dependency> | 
 |  | 
 |     </dependencies> | 
 | </project> |