Skip to content

Commit

Permalink
WIP attempted fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ladicek committed May 12, 2022
1 parent 5834dc4 commit a5966c6
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,24 @@
<groupId>io.smallrye</groupId>
<artifactId>jandex</artifactId>
</dependency>

<!-- dependencies used in invoker tests, to make sure they're downloaded by the main build -->
<dependency>
<groupId>org.jboss</groupId>
<artifactId>jandex</artifactId>
<version>2.4.0.Final</version>
</dependency>
<dependency>
<groupId>io.quarkus.gizmo</groupId>
<artifactId>gizmo</artifactId>
<version>1.0.10.Final</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>io.smallrye.common</groupId>
<artifactId>smallrye-common-annotation</artifactId>
<version>1.11.0</version>
</dependency>
</dependencies>

<build>
Expand Down Expand Up @@ -80,6 +98,18 @@
</execution>
</executions>
</plugin>

<!-- plugins used in invoker tests, to make sure they're downloaded by the main build -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>${version.maven-dependency-plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>${version.maven-shade-plugin}</version>
</plugin>
</plugins>
</build>
</project>

0 comments on commit a5966c6

Please sign in to comment.