Is there any way to use the jars listed as dependencies rather than hard
coding a list of jar files?
 
We have something like this:
 
   <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-ejb-plugin</artifactId>
    <version>2.1</version>
    <configuration>
     <generateClient>true</generateClient>
     <archive>
      <manifestEntries>
       <Manifest-Version>1.0</Manifest-Version>
       <Class-Path>
        bcprov-jdk13-119.jar
        crypto-1.0.0.14.jar
        oldSource-56.1-SNAPSHOT.jar
        memberBase-56.1-SNAPSHOT.jar
        lty-model-56.1-SNAPSHOT.jar
        lty-utils-1.0.0.41.jar
        commons-lang-2.2.jar
        accountingWeb-commons-56.1-SNAPSHOT.jar
        rewardEngine-56.1-SNAPSHOT.jar
        xercesImpl-2.8.0.jar
       </Class-Path>
      </manifestEntries>
     </archive>
    </configuration>
   </plugin>
 
Is there no ${somekindaclasspath} option?

Reply via email to