You can set up your project as a maven project, it will be much easier to manage your dependencies:
<?xml version="1.0"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.nuxeo.ecm.platform</groupId> <artifactId>nuxeo-features-parent</artifactId> <version>5.4.1</version> </parent> <properties> <nuxeo.automation.client.version>5.4.1</nuxeo.automation.client.version > </properties> <artifactId>my-automation-client</artifactId> <name>My Automation Client</name> <description>My Automation Client</description> <dependencies> <dependency> <groupId>org.nuxeo.ecm.automation</groupId> <artifactId>nuxeo-automation-client</artifactId> <version>${nuxeo.automation.client.version}</version> </dependency> </dependencies> </project> --- Mailing list: [email protected] Forum: http://forum.nuxeo.org/f/1/
