Skip to content

Commit

Permalink
chore(build): Set skip=true for maven-install-plugin (operaton#179)
Browse files Browse the repository at this point in the history
Artifacts
- operaton-qa-integration-tests-engine
- operaton-qa-integration-tests-engine-jakarta
only have test sources, but no main sources. Thus it does not produce a jar file to be installed.
  • Loading branch information
Karsten Thoms authored and javahippie committed Nov 12, 2024
1 parent 782e9b7 commit d8de96d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
12 changes: 12 additions & 0 deletions qa/integration-tests-engine-jakarta/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,18 @@
</dependencies>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</pluginManagement>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
11 changes: 11 additions & 0 deletions qa/integration-tests-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,17 @@
</excludes>
</testResource>
</testResources>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit d8de96d

Please sign in to comment.