Skip to content

Commit

Permalink
[MINVOKER-277] Require Maven 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
slachiewicz committed Feb 8, 2021
1 parent 7fc1418 commit 32eef92
Showing 1 changed file with 33 additions and 4 deletions.
37 changes: 33 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ under the License.
<artifactId>maven-plugins</artifactId>
<groupId>org.apache.maven.plugins</groupId>
<version>34</version>
<relativePath>../../pom/maven/maven-plugins/pom.xml</relativePath>
<relativePath/>
</parent>

<artifactId>maven-invoker-plugin</artifactId>
Expand Down Expand Up @@ -66,7 +66,7 @@ under the License.

<properties>
<javaVersion>7</javaVersion>
<mavenVersion>3.0</mavenVersion>
<mavenVersion>3.1.1</mavenVersion>
<doxiaVersion>1.9.1</doxiaVersion>
<doxiaSitetoolsVersion>1.9.2</doxiaSitetoolsVersion>
<beanshell-groupId>org.apache-extras.beanshell</beanshell-groupId>
Expand Down Expand Up @@ -145,12 +145,29 @@ under the License.
<artifactId>maven-artifact-transfer</artifactId>
<version>0.13.1</version>
</dependency>

<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-common-artifact-filters</artifactId>
<version>3.1.1</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>sisu-inject-plexus</artifactId>
<groupId>org.sonatype.sisu</groupId>
</exclusion>
</exclusions>
</dependency>
<!-- Doxia -->
<dependency>
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-sink-api</artifactId>
<version>${doxiaVersion}</version>
<exclusions>
<exclusion>
<artifactId>plexus-container-default</artifactId>
<groupId>org.codehaus.plexus</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.maven.doxia</groupId>
Expand All @@ -161,6 +178,12 @@ under the License.
<groupId>org.apache.maven.doxia</groupId>
<artifactId>doxia-core</artifactId>
<version>${doxiaVersion}</version>
<exclusions>
<exclusion>
<artifactId>plexus-container-default</artifactId>
<groupId>org.codehaus.plexus</groupId>
</exclusion>
</exclusions>
</dependency>

<!-- Doxia-sitetools -->
Expand Down Expand Up @@ -236,8 +259,14 @@ under the License.
<dependency>
<groupId>org.apache.maven.plugin-testing</groupId>
<artifactId>maven-plugin-testing-harness</artifactId>
<version>2.1</version>
<version>3.1.0</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>plexus-container-default</artifactId>
<groupId>org.codehaus.plexus</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
Expand Down

0 comments on commit 32eef92

Please sign in to comment.