Hi, The simplest way to manage dependencies is by using Maven. The Maven dependency plugin provides you with a list of all dependencies e.g. dependency:tree or dependency:list.
Michael On 23 September 2014 13:58, techie2k <[email protected]> wrote: > I'm using maven test project and find the partial dependencies for jcr(2.0) > and jackrabbit(2.6) > > <dependencies> > > <dependency> > <groupId>junit</groupId> > <artifactId>junit</artifactId> > <version>3.8.1</version> > <scope>test</scope> > </dependency> > > > <dependency> > <groupId>javax.jcr</groupId> > <artifactId>jcr</artifactId> > <version>2.0</version> > </dependency> > > > <dependency> > <groupId>org.apache.jackrabbit</groupId> > <artifactId>jackrabbit-core</artifactId> > <version>2.6.0</version> > <exclusions> > <exclusion> > <groupId>org.slf4j</groupId> > <artifactId>jcl-over-slf4j</artifactId> > </exclusion> > </exclusions> > </dependency> > > <dependency> > <groupId>org.apache.jackrabbit</groupId> > <artifactId>jackrabbit-jcr-tests</artifactId> > <version>2.6.0</version> > </dependency> > > <dependency> > <groupId>junit</groupId> > <artifactId>junit</artifactId> > <scope>test</scope> > <version>4.8.2</version> > </dependency> > <dependencies> > > > > -- > View this message in context: > http://jackrabbit.510166.n4.nabble.com/Minimum-set-of-libraries-required-to-use-Jackrabbit-JCR-implementation-tp4661412p4661415.html > Sent from the Jackrabbit - Dev mailing list archive at Nabble.com.
