Skip to content

apenvern/websphere-maven-plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

76 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Forked from lsiu/websphere-maven-plugin

Maven plugin for generate the _XXX_Stub.class file required in order for stand alone java application to call Remote EJB on Websphere Application Server.

Add the parameter FileSet to replace the class parameter and don't put all the remote class but just **/*Remote.class.

For example

<plugin>
    <groupId>com.github.lsiu.maven.plugins</groupId>
    <artifactId>websphere-maven-plugin</artifactId>
    <version>1.0.2</version>
    <configuration>
        <!-- list of interface/classes to create ejb stubs -->
        <fileSets>
          <fileSet>
            <outputDirectory>${project.build.outputDirectory}</outputDirectory>
			<includes>
				<include>**/*Remote.class</include>
			</includes>
          </fileSet>
        </fileSets>
        <!-- following are optional -->
        <websphereHome/> <!-- default to /IBM/WebSphere/AppServer -->
        <outputDirectory/> <!-- default to target/classes -->
        <classpath/> <!-- default to test scope classpath -->
    </configuration>
</plugin>

About

Websphere Maven Plugin

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 96.7%
  • Groovy 3.3%