Skip to content

Commit

Permalink
Merge pull request #51 from jglick/maven
Browse files Browse the repository at this point in the history
Update Maven to 3.8.1
  • Loading branch information
jglick authored Jul 30, 2021
2 parents 1db20e3 + 0f23277 commit ac60f97
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions access-modifier-checker/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
<packaging>maven-plugin</packaging>
<name>Custom Access Modifier Checker</name>

<properties>
<maven.version>3.8.1</maven.version>
</properties>

<dependencies>
<dependency>
<groupId>junit</groupId>
Expand Down Expand Up @@ -40,14 +44,14 @@
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>3.6.3</version>
<version>${maven.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<!-- needed when injecting the Maven Project into a plugin -->
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>3.6.3</version>
<version>${maven.version}</version>
<scope>provided</scope>
</dependency>

Expand All @@ -59,6 +63,16 @@
</dependency>
</dependencies>

<dependencyManagement>
<dependencies>
<dependency> <!-- Irritatingly, maven-resolver-provider & maven-resolver-impl request different versions -->
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.30</version>
</dependency>
</dependencies>
</dependencyManagement>

<profiles>
<profile>
<id>run-its</id>
Expand Down

0 comments on commit ac60f97

Please sign in to comment.