Skip to content

Commit a95e15f

Browse files
committed
chore(build): move deploy/install settings to the top
https://maven.apache.org/guides/mini/guide-migration-to-mvn4.html
1 parent 0bbc43f commit a95e15f

2 files changed

Lines changed: 11 additions & 4 deletions

File tree

plc4go/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -397,10 +397,6 @@
397397
<phase>none</phase>
398398
</execution>
399399
</executions>
400-
<configuration>
401-
<!-- TODO: configuration issue. This is now true in maven 4 and we should investigate why we fail without that-->
402-
<installAtEnd>false</installAtEnd>
403-
</configuration>
404400
</plugin>
405401

406402
<!-- Ensure we don't deploy anything -->

pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1663,6 +1663,13 @@
16631663
</execution>
16641664
</executions>
16651665
</plugin>
1666+
<plugin>
1667+
<artifactId>maven-install-plugin</artifactId>
1668+
<configuration>
1669+
<!-- TODO: configuration issue. This is now true in maven 4 and we should investigate why we fail without that-->
1670+
<installAtEnd>false</installAtEnd>
1671+
</configuration>
1672+
</plugin>
16661673
<plugin>
16671674
<groupId>org.apache.maven.plugins</groupId>
16681675
<artifactId>maven-deploy-plugin</artifactId>
@@ -1678,6 +1685,10 @@
16781685
</configuration>
16791686
</execution>
16801687
</executions>
1688+
<configuration>
1689+
<!-- TODO: configuration issue. This is now true in maven 4 and we should investigate why we fail without that-->
1690+
<deployAtEnd>false</deployAtEnd>
1691+
</configuration>
16811692
</plugin>
16821693
<!--
16831694
Generate an SBOM for the project

0 commit comments

Comments
 (0)