Skip to content

Commit

Permalink
Maven Core artifacts should be in provided scoped (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski authored Oct 18, 2023
1 parent 868c74a commit 8bb59aa
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,16 +72,19 @@
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${maven.min.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${maven.min.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-model</artifactId>
<version>${maven.min.version}</version>
<scope>provided</scope>
</dependency>

<!--Build Info-->
Expand Down Expand Up @@ -140,6 +143,12 @@
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>32.0.1-jre</version>
</dependency>

<!--Tests-->
<dependency>
<groupId>org.apache.maven</groupId>
Expand Down

0 comments on commit 8bb59aa

Please sign in to comment.