| <?xml version="1.0" encoding="UTF-8"?> | 
 | <!-- | 
 |  | 
 |     Copyright (c) 2011, 2024 Oracle and/or its affiliates. All rights reserved. | 
 |  | 
 |     This program and the accompanying materials are made available under the | 
 |     terms of the Eclipse Distribution License v. 1.0, which is available at | 
 |     http://www.eclipse.org/org/documents/edl-v10.php. | 
 |  | 
 |     SPDX-License-Identifier: BSD-3-Clause | 
 |  | 
 | --> | 
 |  | 
 | <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.ws.rs-examples</artifactId> | 
 |     <packaging>jar</packaging> | 
 |     <name>Jakarta RESTful WS Examples</name> | 
 |  | 
 |     <parent> | 
 |         <groupId>jakarta.ws.rs</groupId> | 
 |         <artifactId>all</artifactId> | 
 |         <version>4.0.0-SNAPSHOT</version> | 
 |     </parent> | 
 |  | 
 |     <properties> | 
 |         <microprofile.config.version>3.0.3</microprofile.config.version> | 
 |     </properties> | 
 |  | 
 |     <build> | 
 |         <plugins> | 
 |             <plugin> | 
 |                 <artifactId>maven-compiler-plugin</artifactId> | 
 |             </plugin> | 
 |             <plugin> | 
 |                 <artifactId>maven-jar-plugin</artifactId> | 
 |             </plugin> | 
 |             <plugin> | 
 |                 <groupId>org.codehaus.mojo</groupId> | 
 |                 <artifactId>buildnumber-maven-plugin</artifactId> | 
 |             </plugin> | 
 |             <plugin> | 
 |                 <artifactId>maven-source-plugin</artifactId> | 
 |             </plugin> | 
 |             <plugin> | 
 |                 <artifactId>maven-jxr-plugin</artifactId> | 
 |             </plugin> | 
 |             <plugin> | 
 |                 <artifactId>maven-checkstyle-plugin</artifactId> | 
 |             </plugin> | 
 |             <plugin> | 
 |                 <groupId>org.glassfish.copyright</groupId> | 
 |                 <artifactId>glassfish-copyright-maven-plugin</artifactId> | 
 |             </plugin> | 
 |         </plugins> | 
 |     </build> | 
 |  | 
 |     <dependencies> | 
 |         <dependency> | 
 |             <groupId>jakarta.ws.rs</groupId> | 
 |             <artifactId>jakarta.ws.rs-api</artifactId> | 
 |             <version>${project.version}</version> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>jakarta.enterprise</groupId> | 
 |             <artifactId>jakarta.enterprise.cdi-api</artifactId> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>jakarta.enterprise.concurrent</groupId> | 
 |             <artifactId>jakarta.enterprise.concurrent-api</artifactId> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>jakarta.validation</groupId> | 
 |             <artifactId>jakarta.validation-api</artifactId> | 
 |         </dependency> | 
 |  | 
 |         <dependency> | 
 |             <groupId>org.eclipse.microprofile.config</groupId> | 
 |             <artifactId>microprofile-config-api</artifactId> | 
 |             <version>${microprofile.config.version}</version> | 
 |         </dependency> | 
 |     </dependencies> | 
 |  | 
 | </project> |