|  | <?xml version="1.0" encoding="UTF-8"?> | 
|  | <!-- | 
|  |  | 
|  | Copyright (c) 2019, 2022 Oracle and/or its affiliates. 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/maven-v4_0_0.xsd"> | 
|  | <modelVersion>4.0.0</modelVersion> | 
|  |  | 
|  | <parent> | 
|  | <groupId>org.eclipse.ee4j</groupId> | 
|  | <artifactId>project</artifactId> | 
|  | <version>1.0.8</version> | 
|  | </parent> | 
|  |  | 
|  | <groupId>org.glassfish.jersey.tools.plugins</groupId> | 
|  | <artifactId>jersey-release-notes-maven-plugin</artifactId> | 
|  | <packaging>maven-plugin</packaging> | 
|  | <version>1.0.1</version> | 
|  | <name>jersey-release-notes-maven-plugin</name> | 
|  |  | 
|  | <description> | 
|  | Publishes release notes for Jersey to GitHub | 
|  | </description> | 
|  |  | 
|  | <dependencies> | 
|  | <dependency> | 
|  | <groupId>org.apache.maven</groupId> | 
|  | <artifactId>maven-plugin-api</artifactId> | 
|  | <version>${maven.version}</version> | 
|  | </dependency> | 
|  | <dependency> | 
|  | <groupId>org.apache.maven</groupId> | 
|  | <artifactId>maven-core</artifactId> | 
|  | <version>${maven.version}</version> | 
|  | </dependency> | 
|  | <dependency> | 
|  | <groupId>org.apache.maven</groupId> | 
|  | <artifactId>maven-artifact</artifactId> | 
|  | <version>${maven.version}</version> | 
|  | </dependency> | 
|  | <dependency> | 
|  | <groupId>org.apache.maven.plugin-tools</groupId> | 
|  | <artifactId>maven-plugin-annotations</artifactId> | 
|  | <version>3.6.0</version> | 
|  | <scope>provided</scope> | 
|  | </dependency> | 
|  | <dependency> | 
|  | <groupId>org.kohsuke</groupId> | 
|  | <artifactId>github-api</artifactId> | 
|  | <version>1.95</version> | 
|  | </dependency> | 
|  | <dependency> | 
|  | <groupId>org.apache.maven.plugin-testing</groupId> | 
|  | <artifactId>maven-plugin-testing-harness</artifactId> | 
|  | <version>3.3.0</version> | 
|  | <scope>test</scope> | 
|  | </dependency> | 
|  |  | 
|  | <dependency> | 
|  | <groupId>commons-io</groupId> | 
|  | <artifactId>commons-io</artifactId> | 
|  | <version>2.11.0</version> | 
|  | </dependency> | 
|  | <dependency> | 
|  | <groupId>org.apache.maven</groupId> | 
|  | <artifactId>maven-compat</artifactId> | 
|  | <version>3.8.1</version> | 
|  | <scope>test</scope> | 
|  | </dependency> | 
|  | <dependency> | 
|  | <groupId>junit</groupId> | 
|  | <artifactId>junit</artifactId> | 
|  | <version>4.13.2</version> | 
|  | <scope>test</scope> | 
|  | </dependency> | 
|  |  | 
|  | </dependencies> | 
|  |  | 
|  | <build> | 
|  | <plugins> | 
|  | <plugin> | 
|  | <groupId>org.apache.maven.plugins</groupId> | 
|  | <artifactId>maven-plugin-plugin</artifactId> | 
|  | <version>3.6.0</version> | 
|  | <configuration> | 
|  | <skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound> | 
|  | </configuration> | 
|  | <executions> | 
|  | <execution> | 
|  | <id>default-descriptor</id> | 
|  | <goals> | 
|  | <goal>descriptor</goal> | 
|  | </goals> | 
|  | <phase>process-classes</phase> | 
|  | </execution> | 
|  | </executions> | 
|  | </plugin> | 
|  | <plugin> | 
|  | <groupId>org.apache.maven.plugins</groupId> | 
|  | <artifactId>maven-compiler-plugin</artifactId> | 
|  | <version>3.1</version> | 
|  | <inherited>true</inherited> | 
|  | <configuration> | 
|  | <source>${java.version}</source> | 
|  | <target>${java.version}</target> | 
|  | <showWarnings>false</showWarnings> | 
|  | <fork>false</fork> | 
|  | </configuration> | 
|  | </plugin> | 
|  | </plugins> | 
|  | </build> | 
|  |  | 
|  | <properties> | 
|  | <java.version>1.8</java.version> | 
|  | <maven.version>3.8.1</maven.version> | 
|  | </properties> | 
|  | </project> |