Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions build-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,6 @@
<!-- The message that is appended to the end of the plugin error output when the API problems fail the build -->
<revapi.buildFailureMessage>Run "jbang revapi-update" to update api-changes.xml file and also add the justification for those changes in that file.</revapi.buildFailureMessage>

<!-- Forbidden API checks -->
<forbiddenapis-maven-plugin.version>3.4</forbiddenapis-maven-plugin.version>

<!-- platform properties - this is a floating tag -->
<platform.quarkus.native.builder-image>mandrel</platform.quarkus.native.builder-image>

Expand Down Expand Up @@ -622,7 +619,6 @@
<plugin>
<groupId>de.thetaphi</groupId>
<artifactId>forbiddenapis</artifactId>
<version>${forbiddenapis-maven-plugin.version}</version>
<executions>
<execution>
<id>verify-forbidden-apis</id>
Expand Down
7 changes: 7 additions & 0 deletions independent-projects/parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@
<version.failsafe.plugin>${version.surefire.plugin}</version.failsafe.plugin>
<version.versions.plugin>2.18.0</version.versions.plugin>
<version.yaml-properties.plugin>1.1.3</version.yaml-properties.plugin>
<!-- Forbidden API checks -->
<version.forbiddenapis-maven-plugin>3.4</version.forbiddenapis-maven-plugin>

<!-- Code format -->
<format.skip>false</format.skip>
Expand Down Expand Up @@ -433,6 +435,11 @@
<artifactId>versions-maven-plugin</artifactId>
<version>${version.versions.plugin}</version>
</plugin>
<plugin>
<groupId>de.thetaphi</groupId>
<artifactId>forbiddenapis</artifactId>
<version>${version.forbiddenapis-maven-plugin}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand Down
4 changes: 0 additions & 4 deletions independent-projects/resteasy-reactive/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,6 @@
<mockito.version>5.18.0</mockito.version>
<wiremock.version>3.13.0</wiremock.version>
<mutiny-zero.version>1.1.1</mutiny-zero.version>

<!-- Forbidden API checks -->
<forbiddenapis-maven-plugin.version>3.4</forbiddenapis-maven-plugin.version>
</properties>

<modules>
Expand Down Expand Up @@ -502,7 +499,6 @@
<plugin>
<groupId>de.thetaphi</groupId>
<artifactId>forbiddenapis</artifactId>
<version>${forbiddenapis-maven-plugin.version}</version>
<executions>
<execution>
<id>verify-forbidden-apis</id>
Expand Down
Loading