Skip to content

Commit

Permalink
Minor fixes - Found while synching with WildFly
Browse files Browse the repository at this point in the history
  • Loading branch information
rafabene committed Sep 8, 2015
1 parent a956151 commit ed09e9f
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 22 deletions.
2 changes: 1 addition & 1 deletion app-client/ejb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<artifactId>maven-ejb-plugin</artifactId>
<version>${ejb.plugin.version}</version>
<configuration>
<ejbVersion>3.0</ejbVersion>
<ejbVersion>3.1</ejbVersion>
<generateClient>true</generateClient>
<archive>
<addMavenDescriptor>false</addMavenDescriptor>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ public class TaxImpl_2 implements Tax {

@Override
public String getRate() {
// TODO Auto-generated method stub
return "Tax_2 Rate! To switch back to the default, comment out the 'alternatives' tag in the WEB-INF/beans.xml file";
}

Expand Down
17 changes: 0 additions & 17 deletions ejb-asynchronous/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,6 @@
</license>
</licenses>

<dependencyManagement>
<dependencies>
<!-- JBoss distributes a complete set of Java EE 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-eap stack (you can
read this as the JBoss stack of the Java EE APIs and related components. -->
<dependency>
<groupId>org.jboss.bom</groupId>
<artifactId>jboss-javaee-7.0-eap</artifactId>
<version>${version.jboss.bom.eap}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>

<!-- Import the client API of the EJB project -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ private static RemoteCalculator lookupRemoteStatelessCalculator() throws NamingE
// <moduleName> By the default the module name is the name of the EJB JAR file (without the
// .jar suffix). The module name might be overridden in the ejb-jar.xml
//
// <distinctName> : AS7 allows each deployment to have an (optional) distinct name.
// <distinctName> : EAP allows each deployment to have an (optional) distinct name.
// This example does not use this so leave it blank.
//
// <beanName> : The name of the session been to be invoked.
Expand Down Expand Up @@ -154,7 +154,7 @@ private static RemoteCounter lookupRemoteStatefulCounter() throws NamingExceptio
// <moduleName> By the default the module name is the name of the EJB JAR file (without the
// .jar suffix). The module name might be overridden in the ejb-jar.xml
//
// <distinctName> : AS7 allows each deployment to have an (optional) distinct name.
// <distinctName> : EAP allows each deployment to have an (optional) distinct name.
// This example does not use this so leave it blank.
//
// <beanName> : The name of the session been to be invoked.
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@
<module>helloworld-singleton</module>
<module>helloworld-ws</module>
<module>hibernate5</module>
<module>inter-app</module>
<module>jaxws-addressing</module>
<module>jaxws-ejb</module>
<module>jaxws-pojo</module>
Expand Down
2 changes: 1 addition & 1 deletion resteasy-jaxrs-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>false</skip>
<skip>true</skip>
<systemProperties>
<property>
<name>xmlUrl</name>
Expand Down

0 comments on commit ed09e9f

Please sign in to comment.