Plugin for creating ejb client

Are there any plugins like maven ejb-plugin (http://maven.apache.org/plugins/maven-ejb-plugin/examples/generating-ejb-client.html) for creating ejb-clients in gradle?

I am not aware of a plugin for creating a EJB client JAR. Looking at the source code of the Maven plugin, isn’t that plugin just creating a JAR file with a specific classifier from a set of directories? If that’s the case it is very simple to achieve in Gradle. You create a task of type Jar and configure it to include the output from the main SourceSet plus a filter on various packages.

I am not aware of a plugin for creating a EJB client JAR. Looking at the source code of the Maven plugin, isn’t that plugin just creating a JAR file with a specific classifier from a set of directories? If that’s the case it is very simple to achieve in Gradle. You create a task of type Jar and configure it to include the output from the main SourceSet plus a filter on various packages.