Skip to content

Commit d9d6881

Browse files
committed
Add default configuration for exists-maven-plugin
We don't want every project using this plugin by default, but those that deploy native-classifier artifacts from different CI nodes benefit from it during release, so they don't run into double-deploy failures.
1 parent 6e77a21 commit d9d6881

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

pom.xml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,7 @@
301301

302302
<!-- Other Maven plugins -->
303303
<dokka-maven-plugin.version>1.5.0</dokka-maven-plugin.version>
304+
<exists-maven-plugin.version>0.8.0</exists-maven-plugin.version>
304305
<formatter-maven-plugin.version>2.16.0</formatter-maven-plugin.version>
305306
<impsort-maven-plugin.version>1.6.2</impsort-maven-plugin.version>
306307
<jacoco-maven-plugin.version>0.8.7</jacoco-maven-plugin.version>
@@ -878,6 +879,20 @@
878879
</executions>
879880
</plugin>
880881

882+
<!-- Exists Maven Plugin - https://github.com/chonton/exists-maven-plugin -->
883+
<plugin>
884+
<groupId>org.honton.chas</groupId>
885+
<artifactId>exists-maven-plugin</artifactId>
886+
<version>${exists-maven-plugin.version}</version>
887+
<executions>
888+
<execution>
889+
<goals>
890+
<goal>remote</goal>
891+
</goals>
892+
</execution>
893+
</executions>
894+
</plugin>
895+
881896
<!-- Formatter Maven Plugin - https://github.com/revelc/formatter-maven-plugin -->
882897
<plugin>
883898
<groupId>net.revelc.code.formatter</groupId>

0 commit comments

Comments
 (0)