Skip to content

Commit

Permalink
Hopefully fix airline-maven-plugin builds
Browse files Browse the repository at this point in the history
Explicitly declares the internal dependencies in the invoker plugin
configuration to resolve missing dependencies
  • Loading branch information
rvesse committed Nov 27, 2023
1 parent 08c30fa commit a13833e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions airline-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,22 @@
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.github.rvesse</groupId>
<artifactId>airline</artifactId>
<version>${project.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.github.rvesse</groupId>
<artifactId>airline-examples</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

Expand Down Expand Up @@ -126,6 +142,10 @@
<skipInvocation>${skipTests}</skipInvocation>
<parallelThreads>4</parallelThreads>
<streamLogsOnFailures>true</streamLogsOnFailures>
<extraArtifacts>
<extraArtifact>com.github.rvesse:airline:${airline.version}:jar:tests</extraArtifact>
<extraArtifact>com.github.rvesse:airline-examples:${airline.version}:jar</extraArtifact>
</extraArtifacts>
<settingsFile>settings.xml</settingsFile>
</configuration>
<executions>
Expand Down

0 comments on commit a13833e

Please sign in to comment.