Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

RHPAM-1670: new module jboss-javaee-8.0-with-ba added. jboss-javaee-7.0-with-ba deleted #2

Merged
merged 1 commit into from
Jul 30, 2019
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
JBoss Java EE 7 with RHBA
JBoss Java EE 8 with RHBA
===================================

This BOM builds on the Java EE full profile BOM, adding Red Hat Business Automation.
Expand All @@ -12,7 +12,7 @@ To use the BOM, import into your dependency management:
<dependencies>
<dependency>
<groupId>com.redhat.ba</groupId>
<artifactId>jboss-javaee-7.0-with-ba</artifactId>
<artifactId>jboss-javaee-8.0-with-ba</artifactId>
<version>7.1.0-SNAPSHOT</version>
<type>pom</scope>
<scope>import</scope>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,25 @@
<version>7.1.0-SNAPSHOT</version>
</parent>

<artifactId>jboss-javaee-7.0-with-ba</artifactId>
<artifactId>jboss-javaee-8.0-with-ba</artifactId>
<packaging>pom</packaging>

<name>JBoss Java EE 7 Specification APIs with Red Hat Business Automation</name>
<description>Dependency Management for Java EE 7 Specification APIs with Red Hat Business Automation</description>
<name>JBoss Java EE 8 Specification APIs with Red Hat Business Automation</name>
<description>Dependency Management for Java EE 8 Specification APIs with Red Hat Business Automation</description>

<dependencyManagement>
<dependencies>
<!-- JBoss distributes a complete set of Java EE 7 APIs including
<!-- JBoss distributes a complete set of Java EE 8 APIs including
a Bill of Materials (BOM). A BOM specifies the versions of a "stack" (or
a collection) of artifacts. We use this here so that we always get the correct
versions of artifacts. Here we use the jboss-javaee-7.0 stack (you can read
this as the JBoss stack of the Java EE full Profile 7 APIs). You can actually use
this stack with any version of JBoss AS that implements Java EE 7, not just
versions of artifacts. Here we use the jboss-javaee-8.0 stack (you can read
this as the JBoss stack of the Java EE full Profile 8 APIs). You can actually use
this stack with any version of JBoss AS that implements Java EE 8, not just
JBoss EAP! -->
<dependency>
<groupId>org.jboss.spec</groupId>
<artifactId>jboss-javaee-7.0</artifactId>
<version>${version.org.jboss.spec.jboss.javaee.7.0}</version>
<artifactId>jboss-javaee-8.0</artifactId>
<version>${version.org.jboss.spec.jboss.javaee.8.0}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@

<properties>
<version.org.kie>7.1.0-SNAPSHOT</version.org.kie>
<!-- Versions of Java EE7 spec artifacts, keep in sync with what the target EAP uses -->
<version.org.jboss.spec.jboss.javaee.7.0>1.1.0.Final-redhat-4</version.org.jboss.spec.jboss.javaee.7.0>
<!-- Versions of Java EE8 spec artifacts, keep in sync with what the target EAP uses -->
<version.org.jboss.spec.jboss.javaee.8.0>1.0.3.Final-redhat-00001</version.org.jboss.spec.jboss.javaee.8.0>

<!-- Repository Deployment URLs -->
<jboss.releases.repo.url>
Expand All @@ -59,7 +59,7 @@
<modules>
<module>ba-bom</module>
<module>ba-platform-bom</module>
<module>jboss-javaee-7.0-with-ba</module>
<module>jboss-javaee-8.0-with-ba</module>
</modules>

<repositories>
Expand Down