Skip to content

Commit

Permalink
Merge pull request #10942 from ctomc/version-matrix
Browse files Browse the repository at this point in the history
WFLY-9911 Move dependency managment under separate bom
  • Loading branch information
kabir committed Mar 28, 2018
2 parents b3d19e7 + 55a9a03 commit c3c2ae0
Show file tree
Hide file tree
Showing 19 changed files with 6,504 additions and 6,309 deletions.
4 changes: 4 additions & 0 deletions clustering/common/pom.xml
Expand Up @@ -42,6 +42,10 @@
<name>WildFly: Common code for clustering subsystems</name>

<dependencies>
<dependency>
<groupId>org.jboss.msc</groupId>
<artifactId>jboss-msc</artifactId>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>wildfly-clustering-service</artifactId>
Expand Down
5,999 changes: 5,999 additions & 0 deletions component-matrix/pom.xml

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions ee/pom.xml
Expand Up @@ -34,6 +34,7 @@
merge conflicts between commits changing the GA and those changing the V.
-->
<version>13.0.0.Alpha1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>wildfly-ee</artifactId>
Expand Down
1 change: 0 additions & 1 deletion ejb3/pom.xml
Expand Up @@ -137,7 +137,6 @@ vi:ts=4:sw=4:expandtab
<dependency>
<groupId>org.jboss</groupId>
<artifactId>jboss-iiop-client</artifactId>
<version>${version.org.jboss.iiop-client}</version>
</dependency>

<dependency>
Expand Down
8 changes: 0 additions & 8 deletions jpa/eclipselink/pom.xml
Expand Up @@ -51,15 +51,7 @@
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>eclipselink</artifactId>
<version>${version.org.eclipselink.version}</version>
<scope>provided</scope>
<exclusions>
<exclusion>
<groupId>org.eclipse.persistence</groupId>
<artifactId>javax.persistence</artifactId>
</exclusion>
</exclusions>

</dependency>


Expand Down
4 changes: 0 additions & 4 deletions jpa/hibernate5/pom.xml
Expand Up @@ -89,14 +89,12 @@
<dependency>
<groupId>org.hibernate.common</groupId>
<artifactId>hibernate-commons-annotations</artifactId>
<version>${version.org.hibernate.commons.annotations}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>${version.org.hibernate}</version>
<scope>provided</scope>
<exclusions>
<exclusion>
Expand All @@ -110,7 +108,6 @@
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>${version.org.hibernate}</version>
<scope>provided</scope>
<exclusions>
<exclusion>
Expand All @@ -130,7 +127,6 @@
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>${version.org.hibernate.validator}</version>
<scope>provided</scope>
</dependency>

Expand Down
3 changes: 0 additions & 3 deletions jpa/openjpa/pom.xml
Expand Up @@ -33,21 +33,18 @@
<dependency>
<groupId>org.apache.openjpa</groupId>
<artifactId>openjpa-kernel</artifactId>
<version>${version.org.apache.openjpa}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.apache.openjpa</groupId>
<artifactId>openjpa-lib</artifactId>
<version>${version.org.apache.openjpa}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.apache.openjpa</groupId>
<artifactId>openjpa-persistence</artifactId>
<version>${version.org.apache.openjpa}</version>
<scope>provided</scope>
</dependency>

Expand Down
21 changes: 3 additions & 18 deletions jsf/multi-jsf-installer/pom.xml
Expand Up @@ -41,25 +41,14 @@
<name>WildFly: JSF Multi-JSF installer</name>
<description>Creates a CLI deployment archive that can install new JSF versions to WildFly.</description>

<!-- All properties can be overridden on the command line. If you override version.jboss.as then
you should also override version.weld.core for whatever weld version ships with the WildFly
server you are targeting. -->
<properties>
<version.jboss.as>${project.version}</version.jboss.as>
<version.weld.core>${version.org.jboss.weld.weld}</version.weld.core>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>wildfly-jsf-injection</artifactId>
<version>${version.jboss.as}</version>
</dependency>
<dependency>
<groupId>org.jboss.weld.module</groupId>
<artifactId>weld-jsf</artifactId>
<version>${version.weld.core}</version>
</dependency>
</dependencies>

Expand All @@ -68,13 +57,12 @@
<id>mojarra-2.x</id>
<properties>
<jsf-impl-name>mojarra</jsf-impl-name>
<jsf-version>2.1.25</jsf-version>
<jsf-version>2.3.3.SP1</jsf-version>
</properties>
<dependencies>
<dependency>
<groupId>com.sun.faces</groupId>
<artifactId>jsf-api</artifactId>
<version>${jsf-version}</version>
<groupId>org.jboss.spec.javax.faces</groupId>
<artifactId>jboss-jsf-api_2.2_spec</artifactId>
</dependency>
<dependency>
<groupId>com.sun.faces</groupId>
Expand Down Expand Up @@ -111,19 +99,16 @@
</activation>
<properties>
<jsf-impl-name>myfaces</jsf-impl-name>
<jsf-version>${version.org.apache.myfaces.core}</jsf-version>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.myfaces.core</groupId>
<artifactId>myfaces-impl</artifactId>
<version>${jsf-version}</version>
</dependency>

<dependency>
<groupId>org.apache.myfaces.core</groupId>
<artifactId>myfaces-api</artifactId>
<version>${jsf-version}</version>
</dependency>

<dependency>
Expand Down
1 change: 1 addition & 0 deletions naming/pom.xml
Expand Up @@ -34,6 +34,7 @@
merge conflicts between commits changing the GA and those changing the V.
-->
<version>13.0.0.Alpha1-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>wildfly-naming</artifactId>
Expand Down

0 comments on commit c3c2ae0

Please sign in to comment.