Skip to content

Commit 583efaa

Browse files
authored
Sort out dependency issues (#1819)
Changes: * fix typo, assertj is not compile dependency * exclude error_prone_annos that come in via gson in Resolver SPI (RFC 9457)
1 parent 35a7b31 commit 583efaa

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

maven-api-impl/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ under the License.
131131
<dependency>
132132
<groupId>org.assertj</groupId>
133133
<artifactId>assertj-core</artifactId>
134+
<scope>test</scope>
134135
</dependency>
135136
<dependency>
136137
<groupId>org.apache.maven.resolver</groupId>

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -534,6 +534,12 @@ under the License.
534534
<groupId>org.apache.maven.resolver</groupId>
535535
<artifactId>maven-resolver-spi</artifactId>
536536
<version>${resolverVersion}</version>
537+
<exclusions>
538+
<exclusion>
539+
<groupId>com.google.errorprone</groupId>
540+
<artifactId>error_prone_annotations</artifactId>
541+
</exclusion>
542+
</exclusions>
537543
</dependency>
538544
<dependency>
539545
<groupId>org.apache.maven.resolver</groupId>

0 commit comments

Comments
 (0)