| <?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>4.0.0-SNAPSHOT</version> | 
 |  | 
 |     <parent> | 
 |         <groupId>jakarta.ws.rs</groupId> | 
 |         <artifactId>all</artifactId> | 
 |         <version>4.0.0-SNAPSHOT</version> | 
 |     </parent> | 
 |  | 
 |     <dependencies> | 
 |         <dependency> | 
 |             <groupId>jakarta.ws.rs</groupId> | 
 |             <artifactId>jakarta.ws.rs-api</artifactId> | 
 |             <version>${project.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-api</artifactId> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>commons-httpclient</groupId> | 
 |             <artifactId>commons-httpclient</artifactId> | 
 |             <version>3.1</version> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>org.hamcrest</groupId> | 
 |             <artifactId>hamcrest</artifactId> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>org.jboss.arquillian.junit5</groupId> | 
 |             <artifactId>arquillian-junit5-container</artifactId> | 
 |             <version>1.8.0.Final</version> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>jakarta.annotation</groupId> | 
 |             <artifactId>jakarta.annotation-api</artifactId> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>jakarta.xml.bind</groupId> | 
 |             <artifactId>jakarta.xml.bind-api</artifactId> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>jakarta.activation</groupId> | 
 |             <artifactId>jakarta.activation-api</artifactId> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>jakarta.servlet</groupId> | 
 |             <artifactId>jakarta.servlet-api</artifactId> | 
 |             <version>6.0.0</version> | 
 |             <scope>provided</scope> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>org.netbeans.tools</groupId> | 
 |             <artifactId>sigtest-maven-plugin</artifactId> | 
 |             <version>1.4</version> | 
 |         </dependency> | 
 |  | 
 |         <!-- Test Dependencies --> | 
 |         <dependency> | 
 |             <groupId>org.junit.jupiter</groupId> | 
 |             <artifactId>junit-jupiter</artifactId> | 
 |             <scope>test</scope> | 
 |         </dependency> | 
 |  | 
 |     </dependencies> | 
 |  | 
 |     <build> | 
 |         <plugins> | 
 |             <plugin> | 
 |                 <artifactId>maven-compiler-plugin</artifactId> | 
 |             </plugin> | 
 |             <plugin> | 
 |                 <artifactId>maven-surefire-plugin</artifactId> | 
 |             </plugin> | 
 |             <plugin> | 
 |                 <artifactId>maven-jar-plugin</artifactId> | 
 |             </plugin> | 
 |             <plugin> | 
 |                 <artifactId>maven-source-plugin</artifactId> | 
 |                 <executions> | 
 |                     <execution> | 
 |                         <id>attach-sources</id> | 
 |                         <goals> | 
 |                             <goal>jar</goal> | 
 |                         </goals> | 
 |                     </execution> | 
 |                 </executions> | 
 |             </plugin> | 
 |  | 
 |         </plugins> | 
 |     </build> | 
 |  | 
 |     <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> | 
 |     </profiles> | 
 | </project> |