Hi All,

May be i'm wrong but i don't think mvn ejb:ejb plugin is working...

coz in my ejb project module i have the following entry


        <build>
                <sourceDirectory>/src</sourceDirectory>
                <testSourceDirectory>/Test</testSourceDirectory>
 
                        <plugins>
                                <plugin>
                                <artifactId>maven-ejb-plugin</artifactId>
                                <configuration>
                                        <jarName>Ejb</jarName>
                                        <generateClient>true</generateClient>
                                        <archive>
                                        <manifest>
                                                
<addClasspath>true</addClasspath>
                                        </manifest>
                                        </archive> 
                                </configuration>
                                </plugin>
                        </plugins>
        </build>

* When i ran "mvn ejb:ejb"  its just packages my class files into jar 
without creating any remote/home interfaces!!! my understanding on this 
plugin is it should create those interfaces am i wrong?

* The other thing is in client jar it includes the Ejb.jar it self and the 
all classes again!! Means
        Ejb-client  has just deplication of Ejb.jar and classes
        Is there any way to tell maven Ejb-client jar to include only 
client classes? or in other way is that possible to configure client jar 
to have only few jars insteadof all??
                Is that possible to configure to have different name for 
client jar like instead of Ejb-client.jar i want to have it has 
EjbInterface-client.jar???

Can anyone please help me to findout whether i'm doing some thing wrong or 
the plugin is not working properly????????????


Thanks,
Raghurajan Gurunathan

Reply via email to