Skip to content

Commit

Permalink
Fixes #315 (or I hope so)
Browse files Browse the repository at this point in the history
  • Loading branch information
Riduidel committed Mar 1, 2023
1 parent 2f44e91 commit 3e719ce
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions aadarchi-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,20 +47,38 @@
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>cdi-in-maven-plugin-helper</artifactId>
<artifactId>base</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>base</artifactId>
<artifactId>cdi-in-maven-plugin-helper</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Since we're in a maven plugin, we can supposethe user project is also a maven project
so automate the boing parts -->
<dependency>
<groupId>io.github.Riduidel.aadarchi</groupId>
<artifactId>maven-metadata-inferer</artifactId>
<version>${project.version}</version>
<exclusions>
<exclusion>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>net.alchim31</groupId>
Expand All @@ -72,7 +90,6 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-vfs2</artifactId>
<version>2.9.0</version>
<exclusions>
<exclusion>
<groupId>org.apache.hadoop</groupId>
Expand Down

0 comments on commit 3e719ce

Please sign in to comment.