WebLogic EJBC equivalent in JBoss

Posted on

I am porting a WebLogic application to JBoss EAP 7.2. This is a maven 3 application, and in the build section of the pom file, we use WebLogic ejbc to compile/build the EJBs:

. . .

java
-classpath %classpath weblogic.ejbc -compiler javac "${project.build.directory}/${project.artifactId}-${project.version}-${environment}.jar"
compile
${project.build.directory}/ejbc.log

. . .

Is there a JBoss EAP equivalent to weblogic ejbc?

Thanks for any help on this you can offer

Responses