Skip to content

Commit

Permalink
Reduce runtime dependency set
Browse files Browse the repository at this point in the history
snakeyaml is definitely not needed at runtime to do a simple
BeanIntrospection based DI. Looks like javax.annotation-api is also not
nneded.

Task-number: #27
  • Loading branch information
Paullo612 committed May 24, 2023
1 parent 3fcec3e commit 9056d5f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions api/micronaut/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,16 @@
<groupId>io.micronaut</groupId>
<artifactId>micronaut-inject</artifactId>
<version>${micronaut.version}</version>
<exclusions>
<exclusion>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

Expand Down

0 comments on commit 9056d5f

Please sign in to comment.