The ejb client is capable of generating another artifact aside from the primary one which is ejb. To choose the ejb client as the dependency just specify the type as ejb-client.
The following dependency declaration would include the primary ejb artifact ejb-project-1.0-SNAPSHOT.jar in your project's package.
[...]
<dependencies>
<dependency>
<groupId>com.example</groupId>
<artifactId>ejb-project</artifactId>
<version>1.0-SNAPSHOT</version>
<type>ejb</type>
</dependency>
</dependencies>
[...]Using this dependency declaration would instead use the ejb-client artifact ejb-project-1.0-SNAPSHOT-client.jar in your project's package.
[...]
<dependencies>
<dependency>
<groupId>com.example</groupId>
<artifactId>ejb-project</artifactId>
<version>1.0-SNAPSHOT</version>
<type>ejb-client</type>
</dependency>
</dependencies>
[...]For more details on generating the ejb client check the ejb-client guide.