Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to parent POM 39 #181

Merged
merged 2 commits into from
Mar 23, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
format
  • Loading branch information
elharo committed Mar 19, 2023
commit 80d78cc62109585f14659d509211a14d36867a78
71 changes: 34 additions & 37 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,13 +17,12 @@
specific language governing permissions and limitations
under the License.
-->

<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://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>
<artifactId>maven-plugins</artifactId>
<version>39</version>
<relativePath />
</parent>
Expand All @@ -34,10 +32,26 @@
<packaging>maven-plugin</packaging>

<name>Apache Maven Shade Plugin</name>
<description>
Repackages the project classes together with their dependencies into a single uber-jar, optionally renaming classes
or removing unused classes.
</description>
<description>Repackages the project classes together with their dependencies into a single uber-jar, optionally renaming classes
or removing unused classes.</description>

<contributors>
<contributor>
<name>Trask Stalnaker</name>
</contributor>
<contributor>
<name>Anthony Dahanne</name>
</contributor>
<contributor>
<name>Fabiano Cipriano de Oliveira</name>
</contributor>
<contributor>
<name>Markus Karg</name>
</contributor>
<contributor>
<name>Torsten Curdt</name>
</contributor>
</contributors>

<prerequisites>
<maven>${mavenVersion}</maven>
Expand All @@ -46,8 +60,8 @@
<scm>
<connection>scm:git:https://gitbox.apache.org/repos/asf/maven-shade-plugin.git</connection>
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/maven-shade-plugin.git</developerConnection>
<url>https://github.com/apache/maven-shade-plugin/tree/${project.scm.tag}</url>
<tag>HEAD</tag>
<url>https://github.com/apache/maven-shade-plugin/tree/${project.scm.tag}</url>
</scm>
<issueManagement>
<system>jira</system>
Expand All @@ -74,24 +88,6 @@
<project.build.outputTimestamp>2022-10-21T20:02:58Z</project.build.outputTimestamp>
</properties>

<contributors>
<contributor>
<name>Trask Stalnaker</name>
</contributor>
<contributor>
<name>Anthony Dahanne</name>
</contributor>
<contributor>
<name>Fabiano Cipriano de Oliveira</name>
</contributor>
<contributor>
<name>Markus Karg</name>
</contributor>
<contributor>
<name>Torsten Curdt</name>
</contributor>
</contributors>

<dependencyManagement>
<dependencies>
<dependency>
Expand Down Expand Up @@ -280,7 +276,7 @@
<exclude>src/it/projects/MSHADE-182/src/main/resources/META-INF/services/relocateme.Service</exclude>
<exclude>src/it/projects/MSHADE-390-sisu-index/**</exclude>
</excludes>
</configuration>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -362,23 +358,24 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>mrm-maven-plugin</artifactId>
<version>1.5.0</version>
<executions>
<execution>
<goals>
<goal>start</goal>
<goal>stop</goal>
</goals>
</execution>
</executions>
<configuration>
<repositories>
<mockRepo>
<source>src/it/mrm/repository</source>
<cloneTo>target/mock-repo</cloneTo> <!-- due to on the fly created jars -->
<cloneTo>target/mock-repo</cloneTo>
<!-- due to on the fly created jars -->
</mockRepo>
<proxyRepo />
</repositories>
</configuration>
<executions>
<execution>
<goals>
<goal>start</goal>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
Expand Down
Loading