Skip to content

Commit

Permalink
Fixed maven dependency scopes
Browse files Browse the repository at this point in the history
  • Loading branch information
wakaleo committed Mar 19, 2023
1 parent 21ce9fd commit f94164b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions serenity-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
<groupId>org.apache.maven</groupId>
<artifactId>maven-plugin-api</artifactId>
<version>${maven.core.version}</version>
<scope>:maven-core</scope>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>commons-lang3</artifactId>
Expand All @@ -115,13 +115,13 @@
<groupId>org.apache.maven.reporting</groupId>
<artifactId>maven-reporting-api</artifactId>
<version>${maven.reporting.version}</version>
<scope>:maven-core</scope>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugin-tools</groupId>
<artifactId>maven-plugin-annotations</artifactId>
<version>${maven.plugin.version}</version>
<scope>:maven-core</scope>
<scope>provided</scope>
<exclusions>
<exclusion>
<artifactId>maven-artifact</artifactId>
Expand Down

0 comments on commit f94164b

Please sign in to comment.