Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 24 additions & 25 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?xml version='1.0' encoding='UTF-8'?>

<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
Expand All @@ -18,14 +17,13 @@
specific language governing permissions and limitations
under the License.
-->

<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>

<parent>
<artifactId>maven-plugins</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>36</version>
<artifactId>maven-plugins</artifactId>
<version>39</version>
<relativePath />
</parent>

Expand All @@ -36,15 +34,30 @@
<name>Apache Maven WAR Plugin</name>
<description>Builds a Web Application Archive (WAR) file from the project output and its dependencies.</description>

<contributors>
<contributor>
<name>Auke Schrijnen</name>
</contributor>
<contributor>
<name>Ludwig Magnusson</name>
</contributor>
<contributor>
<name>Hayarobi Park</name>
</contributor>
<contributor>
<name>Enrico Olivelli</name>
</contributor>
</contributors>

<prerequisites>
<maven>${mavenVersion}</maven>
</prerequisites>

<scm>
<connection>scm:git:https://gitbox.apache.org/repos/asf/maven-war-plugin.git</connection>
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/maven-war-plugin.git</developerConnection>
<url>https://github.com/apache/maven-war-plugin/tree/${project.scm.tag}</url>
<tag>HEAD</tag>
<url>https://github.com/apache/maven-war-plugin/tree/${project.scm.tag}</url>
</scm>
<issueManagement>
<system>JIRA</system>
Expand All @@ -69,21 +82,6 @@
<project.build.outputTimestamp>2021-09-05T09:31:59Z</project.build.outputTimestamp>
</properties>

<contributors>
<contributor>
<name>Auke Schrijnen</name>
</contributor>
<contributor>
<name>Ludwig Magnusson</name>
</contributor>
<contributor>
<name>Hayarobi Park</name>
</contributor>
<contributor>
<name>Enrico Olivelli</name>
</contributor>
</contributors>

<dependencyManagement>
<dependencies>
<dependency>
Expand Down Expand Up @@ -136,7 +134,7 @@
<artifactId>maven-shared-utils</artifactId>
<version>3.3.4</version>
</dependency>

<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
Expand Down Expand Up @@ -172,8 +170,9 @@
<artifactId>org.eclipse.sisu.plexus</artifactId>
<scope>provided</scope>
</dependency>

<dependency> <!-- looks up RepositorySystem -->

<dependency>
<!-- looks up RepositorySystem -->
<groupId>org.apache.maven</groupId>
<artifactId>maven-compat</artifactId>
<version>${mavenVersion}</version>
Expand All @@ -196,8 +195,8 @@
<build>
<resources>
<resource>
<directory>src/main/resources-filtered</directory>
<filtering>true</filtering>
<directory>src/main/resources-filtered</directory>
</resource>
</resources>
<pluginManagement>
Expand Down
Loading