| <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"> |
| |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.apache.netbeans</groupId> |
| <artifactId>netbeans-parent</artifactId> |
| <version>3</version> |
| </parent> |
| <groupId>org.apache.netbeans.utilities</groupId> |
| <artifactId>utilities-parent</artifactId> |
| <version>2</version> |
| <packaging>pom</packaging> |
| <name>Apache Netbeans Maven Utilities</name> |
| <description>Apache Netbeans Maven Utilities is a set of artefacts to build and populate Apache NetBeans artefacts using Apache Maven</description> |
| <url>https://bits.netbeans.org/mavenutilities/parent</url> |
| <licenses> |
| <license> |
| <name>The Apache Software License, Version 2.0</name> |
| <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| <distribution>repo</distribution> |
| </license> |
| </licenses> |
| <scm> |
| <connection>scm:git:https://gitbox.apache.org/repos/asf/netbeans-mavenutils-parent.git</connection> |
| <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/netbeans-mavenutils-parent.git</developerConnection> |
| <url>https://github.com/apache/netbeans-mavenutils-parent</url> |
| <tag>utilities-parent-2</tag> |
| </scm> |
| <dependencyManagement> |
| <dependencies> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.13.2</version> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| </dependencyManagement> |
| <build> |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>animal-sniffer-maven-plugin</artifactId> |
| <version>1.21</version> |
| </plugin> |
| <plugin> |
| <artifactId>maven-changes-plugin</artifactId> |
| <version>2.12.1</version> |
| </plugin> |
| <plugin> |
| <artifactId>maven-checkstyle-plugin</artifactId> |
| <version>3.1.2</version> |
| <configuration> |
| <configLocation>config/maven_checks.xml</configLocation> |
| <headerLocation>config/maven-header.txt</headerLocation> |
| </configuration> |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.maven.shared</groupId> |
| <artifactId>maven-shared-resources</artifactId> |
| <version>4</version> |
| </dependency> |
| </dependencies> |
| </plugin> |
| <plugin> |
| <artifactId>maven-jxr-plugin</artifactId> |
| <version>3.2.0</version> |
| </plugin> |
| <plugin> |
| <artifactId>maven-pmd-plugin</artifactId> |
| <version>3.16.0</version> |
| </plugin> |
| <plugin> |
| <artifactId>maven-linkcheck-plugin</artifactId> |
| <version>1.2</version> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| </project> |