On Apr 22, 2013, at 2:51 PM, Philippe Marschall <[email protected]> wrote:
> Hi
>
> I want to call remote EJBs from a stand alone Java SE application and need to
> know the maven coordinates for the EJB stand-alone client.
The client jar is in
geronimo-tomcat7-javaee6-3.0.0/repository/org/apache/openejb/openejb-client/4.0.0-beta-1/openejb-client-4.0.0-beta-1.jar
of your geronimo install.
In maven terms, that's
<groupId>org.apache.openejb</groupId>
<artifactId>openejb-client</artifactId>
<version>4.0.0-beta-1</version>
--kevan