Listo! por si alguien lo ocupa:
En el archivo
ejb-jar.xml (dentro de META-INF, en la carpeta del ejb) cree una referencia:
Código HTML:
<resource-ref id="ResourceRefBinding_1">
<description></description>
<res-ref-name>jdbc/potala</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Application</res-auth>
<res-sharing-scope>Shareable</res-sharing-scope>
</resource-ref>
Luego en el archivo
ibm-ejb-jar-bnd.xmi agregue el mapeo de la referencia antes creada, al JNDI que tengo en el servidor WebSphere:
Código HTML:
<resRefBindings xmi:id="ResourceRefBinding" jndiName="jdbc/NombreJNDIaqui">
<bindingResourceRef href="META-INF/ejb-jar.xml#ResourceRefBinding_1"/>
</resRefBindings>
(lo anterior dentro del tag <ejbBindings>)
En el bindingResourceRef, se coloca el resource-ref que creamos en el ejb-jar.xml.