Hi, I am using old project converting in to MAVEN. And i am trying to find how can i compile my EJB 2.1 Files using MAVEN ?
I tried using following line of code in my POM.XML <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-ejb-plugin</artifactId> <version>2.3</version> <configuration> <ejbVersion>2.1</ejbVersion> <source>${java-version}</source> <target>${java-version}</target> </configuration> </plugin> It's creating JAR file for me but the thing is, It doesn't create Home,Remote classes for my Client Class. And another thing i am using *.ejb extension files in my source code for those files also this plugin doesn't create related Classes file. Please guide me to create JAR file for EJB 2.1 version with JDK 1.4 Thanks, daivish.