Skip to content

Commit

Permalink
JDF-430: Part I - Use new pattern for name in POM files. Still need t…
Browse files Browse the repository at this point in the history
…o rename directories and modify sub-module quickstarts
  • Loading branch information
sgilda committed Jul 23, 2013
1 parent aa7a985 commit 25f908a
Show file tree
Hide file tree
Showing 143 changed files with 213 additions and 198 deletions.
11 changes: 10 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,16 @@ General Guidelines

* The quickstart project or folder name should match the quickstart name. Each sample project should have a unique name, allowing easy identification by users and developers.

* The `<artifactId>` in the quickstart `pom.xml` file should follow the template: `jboss-<product-type>-<quickstart-name>`. For example, the `<artifactId>` for the `greeter` quickstart in the AS 7 project is `jboss-as-greeter`. The `<artifactId>` for `errors` quickstart in the Fuse project is `jboss-fuse-errors`.
* The `<name>` in the quickstart `pom.xml` file should follow the template: `JBoss <target-product> Quickstart: <quickstart-name> < - optional-subfolder-name>` where `target-product` is the `Target Product` metadata specified in the README.md file, `quickstart-name` is the quickstart folder name, and `optional-subfolder-name` is the name of any nested subfolder containing a `pom.xml` file. The following are a few examples of quickstart pom files and the correct name tags:

greeter/pom.xml ==> `JBoss EAP Quickstart: greeter`
helloworld-errai/pom.xml ==> `JBoss WFK Quickstart: helloworld-errai`
kitchensink-ear/pom.xml ==> `JBoss EAP Quickstart: kitchensink-ear`
kitchensink-ear/ear/pom.xml --> `JBoss EAP Quickstart: kitchensink-ear - ear`
kitchensink-ear/ejb/pom.xml ==> `JBoss EAP Quickstart: kitchensink-ear - ejb`
kitchensink-ear/web/pom.xml ==> `JBoss EAP Quickstart: kitchensink-ear - web`

* The `<artifactId>` in the quickstart `pom.xml` file should follow the template: `jboss-<target-product>-<quickstart-name>`. For example, the `<artifactId>` for the `greeter` quickstart in the AS 7 project is `jboss-as-greeter`. The `<artifactId>` for `errors` quickstart in the Fuse project is `jboss-fuse-errors`.

* If you create a quickstart that uses a database table, make sure the name you use for the table is unique across all quickstarts.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,8 +216,8 @@ To build the quickstarts:

_Note_: If you see a `java.lang.OutOfMemoryError: PermGen space` error when you run this command, increase the memory by typing the following command for your operating system, then try the above command again.

For Linux: export MAVEN_OPTS=-Xmx512m
For Windows: SET MAVEN_OPTS=-Xmx512m
For Linux: export MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=128m"
For Windows: SET MAVEN_OPTS="-Xmx512m -XX:MaxPermSize=128m"


### Undeploy the Deployed Quickstarts with One Command
Expand Down
2 changes: 1 addition & 1 deletion bean-validation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<version>7.1.2-SNAPSHOT</version>
<packaging>war</packaging>

<name>JBoss AS Quickstarts: Bean Validation</name>
<name>JBoss EAP Quickstart: bean-validation</name>
<description>An Arquillian Bean Validation test example</description>
<licenses>
<license>
Expand Down
4 changes: 2 additions & 2 deletions bmt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
<artifactId>jboss-as-bmt</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>war</packaging>
<name>JBoss AS Quickstarts: Bean Managed Transactions</name>
<description>JBoss AS Quickstarts: Bean Managed Transactions</description>
<name>JBoss EAP Quickstart: bmt</name>
<description>JBoss EAP Quickstart: Bean Managed Transactions</description>

<url>http://jboss.org/jbossas</url>
<licenses>
Expand Down
2 changes: 1 addition & 1 deletion cdi-add-interceptor-binding/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<artifactId>jboss-as-cdi-add-interceptor-binding</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>war</packaging>
<name>JBoss AS Quickstarts: CDI Portable Extension, add an interceptor binding</name>
<name>JBoss WFK Quickstart: cdi-add-interceptor-binding</name>
<description>CDI Portable Extension, add an interceptor binding: An example of a Portable Extension and some of the APIs / SPIs of CDI</description>

<url>http://jboss.org/jbossas</url>
Expand Down
4 changes: 2 additions & 2 deletions cdi-alternative/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
<artifactId>cdi-alternative</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>war</packaging>
<name>JBoss AS Quickstarts: CDI Alternative</name>
<description>JBoss AS Quickstarts: CDI Alternative</description>
<name>JBoss EAP Quickstart: cdi-alternative</name>
<description>JBoss EAP Quickstart: CDI Alternative</description>

<url>http://jboss.org/jbossas</url>
<licenses>
Expand Down
4 changes: 2 additions & 2 deletions cdi-decorator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
<artifactId>jboss-as-cdi-decorator</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>war</packaging>
<name>JBoss AS Quickstarts: CDI Decorator</name>
<description>JBoss AS Quickstarts: CDI Decorator</description>
<name>JBoss EAP Quickstart: cdi-decorator</name>
<description>JBoss EAP Quickstart: CDI Decorator</description>

<url>http://jboss.org/jbossas</url>
<licenses>
Expand Down
4 changes: 2 additions & 2 deletions cdi-injection/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
<artifactId>jboss-as-cdi-injection</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>war</packaging>
<name>JBoss AS Quickstarts: CDI Injection</name>
<description>JBoss AS Quickstarts: CDI Injection</description>
<name>JBoss EAP Quickstart: cdi-injection</name>
<description>JBoss EAP Quickstart: CDI Injection</description>

<url>http://jboss.org/jbossas</url>
<licenses>
Expand Down
4 changes: 2 additions & 2 deletions cdi-interceptors/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
<artifactId>jboss-as-cdi-interceptors</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>war</packaging>
<name>JBoss AS Quickstarts: cdi-interceptors</name>
<description>JBoss AS Quickstarts: CDI-Interceptors</description>
<name>JBoss EAP Quickstart: cdi-interceptors</name>
<description>JBoss EAP Quickstart: CDI-Interceptors</description>

<url>http://jboss.org/jbossas</url>
<licenses>
Expand Down
2 changes: 1 addition & 1 deletion cdi-portable-extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<artifactId>jboss-as-cdi-portable-extension</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>war</packaging>
<name>JBoss AS Quickstarts: CDI Portable Extension</name>
<name>JBoss EAP Quickstart: cdi-portable-extension</name>
<description>CDI Portable Extension: An example of a Portable Extension and some of the APIs / SPIs of CDI</description>

<url>http://jboss.org/jbossas</url>
Expand Down
2 changes: 1 addition & 1 deletion cdi-stereotype/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Author: Ievgen Shulga
Level: Intermediate
Technologies: JPA,JSF,EJB
Summary: Demonstrates using cdi-stereotype for logging and auditing
Target Product: EAP 6.0.1 or higher
Target Product: EAP
Source: <https://github.com/jboss-jdf/jboss-as-quickstart/>

What is it?
Expand Down
4 changes: 2 additions & 2 deletions cdi-stereotype/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
<artifactId>jboss-as-cdi-stereotype</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>war</packaging>
<name>JBoss AS Quickstarts: cdi-stereotype</name>
<description>JBoss AS Quickstarts: CDI-Stereotype</description>
<name>JBoss EAP Quickstart: cdi-stereotype</name>
<description>JBoss EAP Quickstart: CDI-Stereotype</description>

<url>http://jboss.org/jbossas</url>
<licenses>
Expand Down
2 changes: 1 addition & 1 deletion cdi-veto/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<artifactId>jboss-as-cdi-veto</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>war</packaging>
<name>JBoss AS Quickstarts: CDI Veto</name>
<name>JBoss EAP Quickstart: cdi-veto</name>
<description>CDI Veto: An example of a Portable Extension and some of the APIs / SPIs of CDI demonstrating veto</description>

<url>http://jboss.org/jbossas</url>
Expand Down
2 changes: 1 addition & 1 deletion cluster-ha-singleton/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<version>7.1.2-SNAPSHOT</version>
</parent>

<name>JBoss AS Quickstarts: SingletonService (client)</name>
<name>JBoss EAP Quickstart: cluster-ha-singleton-client</name>
<packaging>jar</packaging>

<licenses>
Expand Down
4 changes: 2 additions & 2 deletions cluster-ha-singleton/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
<artifactId>jboss-as-cluster-ha-singleton</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JBoss AS Quickstarts: SingletonService</name>
<description>JBoss AS Quickstarts: A SingletonService deployed in a JAR started by SingletonStartup and accessed by an EJB</description>
<name>JBoss EAP Quickstart: cluster-ha-singleton</name>
<description>JBoss EAP Quickstart: A SingletonService deployed in a JAR started by SingletonStartup and accessed by an EJB</description>

<url>http://jboss.org/jdf</url>
<licenses>
Expand Down
2 changes: 1 addition & 1 deletion cluster-ha-singleton/service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<version>7.1.2-SNAPSHOT</version>
</parent>

<name>JBoss AS Quickstarts: SingletonService (service)</name>
<name>JBoss EAP Quickstart: cluster-ha-singleton-service</name>
<packaging>ejb</packaging>

<licenses>
Expand Down
2 changes: 1 addition & 1 deletion cmt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<groupId>org.jboss.as.quickstarts</groupId>
<artifactId>jboss-as-cmt</artifactId>
<version>7.1.2-SNAPSHOT</version>
<name>JBoss AS Quickstarts: Container Managed Transactions</name>
<name>JBoss EAP Quickstart: cmt</name>
<description>CMT: Using transactions managed by the container</description>
<packaging>war</packaging>

Expand Down
2 changes: 1 addition & 1 deletion deltaspike-authorization/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<artifactId>jboss-as-deltaspike-authorization</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>war</packaging>
<name>JBoss AS Quickstarts: DeltaSpike Authorization</name>
<name>JBoss WFK Quickstart: deltaspike-authorization</name>
<description>DeltaSpike Authorization: shows a custom authorization example using security binding types from DeltaSpike</description>

<url>http://jboss.org/jbossas</url>
Expand Down
2 changes: 1 addition & 1 deletion deltaspike-beanbuilder/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<artifactId>jboss-as-deltaspike-beanbuilder</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>war</packaging>
<name>JBoss AS Quickstarts: DeltaSpike BeanBuilder</name>
<name>JBoss WFK Quickstart: deltaspike-beanbuilder</name>
<description>DeltaSpike BeanBuilder: show how to create new beans using DeltaSpike utilities</description>

<url>http://jboss.org/jbossas</url>
Expand Down
2 changes: 1 addition & 1 deletion deltaspike-beanmanagerprovider/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<artifactId>jboss-as-deltaspike-beanmanagerprovider</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>war</packaging>
<name>JBoss AS Quickstarts: DeltaSpike Beanmanagerprovider</name>
<name>JBoss WFK Quickstart: deltaspike-beanmanagerprovider</name>
<description>DeltaSpike Beanmanagerprovider: shows how to use DeltaSpike BeanManagerProvider to access CDI in a EntityListener</description>

<url>http://jboss.org/jbossas</url>
Expand Down
2 changes: 1 addition & 1 deletion deltaspike-deactivatable/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<artifactId>jboss-as-deltaspike-deactivatable</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>war</packaging>
<name>JBoss AS Quickstarts: DeltaSpike Deactivatable</name>
<name>JBoss WFK Quickstart: deltaspike-deactivatable</name>
<description>DeltaSpike Deactivatable: Demonstrate usage of Deactivatable</description>

<url>http://jboss.org/jbossas</url>
Expand Down
2 changes: 1 addition & 1 deletion deltaspike-exception-handling/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<artifactId>jboss-as-deltaspike-exception-handling</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>war</packaging>
<name>JBoss AS Quickstarts: DeltaSpike Exception Handling</name>
<name>JBoss WFK Quickstart: deltaspike-exception-handling</name>
<description>DeltaSpike Exception Handling: Exception being handled by different handlers and purpose</description>

<url>http://jboss.org/jbossas</url>
Expand Down
2 changes: 1 addition & 1 deletion deltaspike-helloworld-jms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<artifactId>jboss-as-deltaspike-helloworld-jms</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>war</packaging>
<name>JBoss AS Quickstarts: deltaspike-helloworld-jms</name>
<name>JBoss WFK Quickstart: deltaspike-helloworld-jms</name>
<description>deltaspike-helloworld-jms: Helloworld JMS producer/consumer client with DeltaSpike property configuration</description>

<url>http://jboss.org/jbossas</url>
Expand Down
2 changes: 1 addition & 1 deletion deltaspike-partialbean-advanced/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<artifactId>jboss-as-deltaspike-partialbean-advanced</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>war</packaging>
<name>JBoss AS Quickstarts: PartialBean Advanced</name>
<name>JBoss WFK Quickstart: deltaspike-partialbean-advanced</name>
<description>DeltaSpike PartialBean: Demonstrates a more advanced usage scenario involving the DeltaSpike Partial Bean module</description>

<url>http://jboss.org/jbossas</url>
Expand Down
2 changes: 1 addition & 1 deletion deltaspike-partialbean-basic/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<artifactId>jboss-as-deltaspike-partialbean-basic</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>war</packaging>
<name>JBoss AS Quickstarts: PartialBean Basic</name>
<name>JBoss WFK Quickstart: deltaspike-partialbean-basic</name>
<description>DeltaSpike InvocationHandler: Demonstrates the basics of using the DeltaSpike PartialBean module</description>

<url>http://jboss.org/jbossas</url>
Expand Down
2 changes: 1 addition & 1 deletion deltaspike-projectstage/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<artifactId>jboss-as-deltaspike-projectstage</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>war</packaging>
<name>JBoss AS Quickstarts: DeltaSpike Project Stage</name>
<name>JBoss WFK Quickstart: deltaspike-projectstage</name>
<description>DeltaSpike Project Stage: shows how to use DeltaSpike ProjectStage that allows to use implementations depending on the current environment</description>

<url>http://jboss.org/jbossas</url>
Expand Down
2 changes: 1 addition & 1 deletion ejb-asynchronous/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<artifactId>jboss-as-ejb-asynchronous-client</artifactId>

<name>JBoss AS Quickstarts: Asynchronous method invocations on an EJB - Service EJB client</name>
<name>JBoss EAP Quickstart: ejb-asynchronous - client</name>
<packaging>jar</packaging>

<parent>
Expand Down
2 changes: 1 addition & 1 deletion ejb-asynchronous/ejb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>jboss-as-ejb-asynchronous-ejb</artifactId>
<name>JBoss AS Quickstarts: Asynchronous method invocations (EJB Jar)</name>
<name>JBoss EAP Quickstart: ejb-asynchronous - ejb</name>
<description>jboss-as-ejb-asynchronous: The application jar with an asynchronous EJB and a second EJB to demonstrate how an EJB can be used asynchronous</description>
<packaging>ejb</packaging>

Expand Down
2 changes: 1 addition & 1 deletion ejb-asynchronous/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<artifactId>jboss-as-ejb-asynchronous</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>JBoss AS Quickstarts: Asynchronous method invocations</name>
<name>JBoss EAP Quickstart: ejb-asynchronous</name>
<description>ejb-asynchronous: Demonstrates asynchronous method invocations on an EJB</description>

<url>http://jboss.org/jbossas</url>
Expand Down
4 changes: 2 additions & 2 deletions ejb-in-ear/ear/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
<artifactId>jboss-as-ejb-in-ear-ear</artifactId>
<packaging>ear</packaging>

<name>JBoss AS Quickstarts: EJB and War in an Ear - EAR</name>
<description>JBoss AS Quickstarts: EJB and WAR in an EAR - EAR</description>
<name>JBoss EAP Quickstart: ejb-in-ear - ear</name>
<description>JBoss EAP Quickstart: EJB and WAR in an EAR - EAR</description>

<licenses>
<license>
Expand Down
4 changes: 2 additions & 2 deletions ejb-in-ear/ejb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
</parent>

<artifactId>jboss-as-ejb-in-ear-ejb</artifactId>
<name>JBoss AS Quickstarts: EJB and War in an Ear - EJB</name>
<description>JBoss AS Quickstarts: EJB and War in an Ear - EJB</description>
<name>JBoss EAP Quickstart: ejb-in-ear - ejb</name>
<description>JBoss EAP Quickstart: EJB and War in an Ear - EJB</description>

<licenses>
<license>
Expand Down
4 changes: 2 additions & 2 deletions ejb-in-ear/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
<groupId>org.jboss.as.quickstarts</groupId>
<artifactId>jboss-as-ejb-in-ear</artifactId>
<version>7.1.2-SNAPSHOT</version>
<name>JBoss AS Quickstarts: EJB and War in an Ear - Root pom</name>
<description>JBoss AS Quickstarts: EJB and War in an Root pom</description>
<name>JBoss EAP Quickstart: ejb-in-ear</name>
<description>JBoss EAP Quickstart: EJB and War in an Root pom</description>
<packaging>pom</packaging>

<url>http://jboss.org/jbossas</url>
Expand Down
4 changes: 2 additions & 2 deletions ejb-in-ear/web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
<artifactId>jboss-as-ejb-in-ear-web</artifactId>
<packaging>war</packaging>

<name>JBoss AS Quickstarts: EJB and War in an Ear - WEB</name>
<description>JBoss AS Quickstarts: EJB and War in an Ear - WEB</description>
<name>JBoss EAP Quickstart: ejb-in-ear - web</name>
<description>JBoss EAP Quickstart: EJB and War in an Ear - WEB</description>

<licenses>
<license>
Expand Down
4 changes: 2 additions & 2 deletions ejb-in-war/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
<artifactId>jboss-as-ejb-in-war</artifactId>
<version>7.1.2-SNAPSHOT</version>
<packaging>war</packaging>
<name>JBoss AS Quickstarts: EJB in a War</name>
<description>JBoss AS Quickstarts: EJB in War</description>
<name>JBoss EAP Quickstart: ejb-in-war</name>
<description>JBoss EAP Quickstart: EJB in War</description>

<url>http://jboss.org/jbossas</url>
<licenses>
Expand Down
2 changes: 1 addition & 1 deletion ejb-multi-server/app-main/ear/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</parent>
<artifactId>jboss-as-ejb-multi-server-appMain-ear</artifactId>
<packaging>ear</packaging>
<name>JBoss AS Quickstarts: multiple server application - AppMain EAR</name>
<name>JBoss EAP Quickstart: ejb-multi-server - app-main - ear</name>
<description>Create the deployable main-app archive
Include the EJB and WEB application together with the necessary API libraries
of the sub applications appOne and appTwo.
Expand Down
2 changes: 1 addition & 1 deletion ejb-multi-server/app-main/ejb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<artifactId>jboss-as-ejb-multi-server-appMain-ejb</artifactId>

<name>JBoss AS Quickstarts: multiple server application - AppMain EJB</name>
<name>JBoss EAP Quickstart: ejb-multi-server - app-main - ejb</name>
<url>http://maven.apache.org</url>
<packaging>ejb</packaging>

Expand Down
2 changes: 1 addition & 1 deletion ejb-multi-server/app-main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>jboss-as-ejb-multi-server-appMain</artifactId>
<name>JBoss AS Quickstarts: multiple server application - AppMain</name>
<name>JBoss EAP Quickstart: ejb-multi-server - app-main</name>
<description>ejb-multi-server: Main application for the scenario
The project builds the EJB and WEB component of the main application
and pack it as a deployable EAR archive.
Expand Down
2 changes: 1 addition & 1 deletion ejb-multi-server/app-main/web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<artifactId>jboss-as-ejb-multi-server-appMain-web</artifactId>

<name>JBoss AS Quickstarts: multiple server application - AppMain WEB</name>
<name>JBoss EAP Quickstart: ejb-multi-server - app-main - web</name>
<url>http://maven.apache.org</url>
<packaging>war</packaging>

Expand Down
2 changes: 1 addition & 1 deletion ejb-multi-server/app-one/ear/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</parent>
<artifactId>jboss-as-ejb-multi-server-appOne-ear</artifactId>
<packaging>ear</packaging>
<name>JBoss AS Quickstarts: multiple server application - AppOne EAR</name>
<name>JBoss EAP Quickstart: ejb-multi-server - app-one - ear</name>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion ejb-multi-server/app-one/ejb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<artifactId>jboss-as-ejb-multi-server-appOne-ejb</artifactId>

<name>JBoss AS Quickstarts: multiple server application - AppOne EJB</name>
<name>JBoss EAP Quickstart: ejb-multi-server - app-one - ejb</name>
<url>http://maven.apache.org</url>
<packaging>ejb</packaging>

Expand Down
Loading

0 comments on commit 25f908a

Please sign in to comment.