Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
skublik committed Oct 18, 2023
2 parents c1961b0 + a5bf309 commit 1275658
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion dist/midpoint-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</parent>

<artifactId>midpoint-api</artifactId>
<packaging>pom</packaging>
<packaging>jar</packaging>

<name>midPoint API Distribution</name>

Expand Down Expand Up @@ -126,6 +126,19 @@
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<!--
Option needed to avoid error:
The packaging plugin for this project did not assign a main file to the project but it has attachments. Change packaging to 'pom'.
It's available since 3.1.1 (plugin version overridden in this case).
-->
<allowIncompleteProjects>true</allowIncompleteProjects>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 1275658

Please sign in to comment.