Hi,,

I'm trying to create ejb client from ejb project

this is what i have in my pom

                        <plugin>
 <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-ejb-plugin</artifactId>
                                <configuration>
 <generateClient>true</generateClient>
                                        <clientExcludes>
 <clientExclude>**/Session*</clientExclude>
                                        </clientExcludes>
                                        <clientIncludes>
 <clientInclude>**/Shop*</clientInclude>
                                        </clientIncludes>
                                        <archive>
                                                <manifest>
 <addClasspath>true</addClasspath>
                                                </manifest>
                                                <manifestEntries>
 <Build-Environment>${build.env}</Build-Environment>
                                                </manifestEntries>
                                        </archive>
                                </configuration>
                        </plugin>



it is creating ejb-client jar but it just includes almost all class files 
from the ejb.jar files, and has no effect on <clientExcludes> or 
<clientInclude> either i specify both of them or only one of them

Has anyone made it working something like this please advise??




Thanks,
Raghu 

Reply via email to