On Fri, May 13, 2011 at 5:43 PM, Richard Evans
<[email protected]> wrote:
> We don't build our app using Maven - we just get the jars for embedded apps
> and use them as required. What's the best way to get the right jars out of a
> maven build of ApacheDS 1.5.8 snapshot?
You can automate this a bit: create a minimal pom.xml with that
dependency, run "mvn dependency:copy-dependencies", then you can find
all jars in target/dependency.
Kind Regards,
Stefan
<?xml version="1.0" encoding="ISO-8859-1"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>x</groupId>
<artifactId>y</artifactId>
<version>1.0</version>
<dependencies>
<dependency>
<groupId>org.apache.directory.server</groupId>
<artifactId>apacheds-protocol-ldap</artifactId>
<version>1.5.8-SNAPSHOT</version>
</dependency>
</dependencies>
</project>