Skip to content

Commit

Permalink
[RESTEASY-295] Use the org.jboss:jboss-parent parent POM for the BOM …
Browse files Browse the repository at this point in the history
…meant for users to consume.

https://issues.redhat.com/browse/RESTEASY-2955
  • Loading branch information
jamezp committed Jun 29, 2021
1 parent ace9631 commit 33d6263
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@

<!-- Plugins versions -->
<version.org.jacoco.plugin>0.7.9</version.org.jacoco.plugin>
<version.compiler.plugin>3.8.0-jboss-2</version.compiler.plugin>
<version.org.wildfly.plugins.wildfly-maven-plugin>2.1.0.Beta1</version.org.wildfly.plugins.wildfly-maven-plugin>
</properties>

Expand Down Expand Up @@ -113,7 +112,6 @@
<module>resteasy-client-vertx</module>
<module>resteasy-client-reactor-netty</module>
<module>providers</module>
<module>resteasy-bom</module>
<module>resteasy-cache</module>
<module>resteasy-guice</module>
<module>security</module>
Expand All @@ -134,6 +132,8 @@
<module>arquillian</module>
<module>profiling-tests</module>
<module>testsuite</module>
<!-- Build this last -->
<module>resteasy-bom</module>
</modules>
<dependencyManagement>
<dependencies>
Expand Down
21 changes: 13 additions & 8 deletions resteasy-bom/pom.xml
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<!-- Use the jboss-parent as the parent. The org.jboss.resteasy:resteasy-jaxrs-all imports the
org.jboss.resteasy:resteasy-dependencies BOM which we do not want included in this BOM.
-->
<parent>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jaxrs-all</artifactId>
<version>4.7.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>org.jboss</groupId>
<artifactId>jboss-parent</artifactId>
<version>38</version>
<relativePath/>
</parent>

<name>RESTEasy Maven Import (BOM)</name>
<description/>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-bom</artifactId>
<version>4.7.0-SNAPSHOT</version>
<packaging>pom</packaging>

<name>RESTEasy Maven Import (BOM)</name>
<description/>

<dependencyManagement>
<dependencies>
<dependency>
Expand Down

0 comments on commit 33d6263

Please sign in to comment.