Hi All,
I have been trying to add some class files in my generated ejb client -
jar using <clientIncludes> but its not all working any help appreciated
please!!!
this is what i have in my pom
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ejb-plugin</artifactId>
<configuration>
<generateClient>true</generateClient>
<clientIncludes>
<clientInclude>**/EStoreSession.class</clientInclude>
</clientIncludes>
<archive>
<manifest>
<addClasspath>true</addClasspath>
</manifest>
<manifestEntries>
<Build-Environment>${build.env}</Build-Environment>
</manifestEntries>
</archive>
</configuration>
</plugin>
and that EStoreSession.class never made into client-jar
Thanks,
Raghu