org.jboss.de nommage.à distance.client.InitialContextFactory dépendance maven

Je suis à l'aide de code suivant dans mon programme, qui est à la recherche jndi pour jboss 7 client.

public static Context getInitialContext() throws NamingException {
      Properties properties = new Properties();
      properties.put(Context.INITIAL_CONTEXT_FACTORY,
              "org.jboss.naming.remote.client.InitialContextFactory");
      properties.put(Context.URL_PKG_PREFIXES, "org.jboss.naming:org.jnp.interfaces");
      properties.put(Context.PROVIDER_URL, "remote://localhost:4447");
      return new InitialContext(properties);
}

quand je lance mon programme eclipse->Exécuter en tant qu'application java, il fonctionne très bien à condition que je donne jboss/bin/client/jboss-client.jar dans mon classpath.

J'ai besoin d'inclure le même pot dans mon maven dépendance.

Qu'est-ce que la dépendance maven pom pour "org.jboss.de nommage.à distance.client.InitialContextFactory" ou où puis-je trouver la dépendance pom.

Grâce.