Thanks Alexandre I already have that code in my pom file, anyway I have the same error.
This is my entire POM file: <?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-dm-parent</artifactId> <version>5.4.1-SNAPSHOT</version> </parent> <groupId>com.tfmx.nuxeo</groupId> <artifactId>tfmx_tdams</artifactId> <name>tfmx_tdams</name> <description>fmx_tdams project description</description> <dependencies> <dependency> <groupId>org.nuxeo.ecm.core</groupId> <artifactId>nuxeo-core</artifactId> </dependency> <dependency> <groupId>org.nuxeo.ecm.core</groupId> <artifactId>nuxeo-core-event</artifactId> </dependency> <dependency> <groupId>org.nuxeo.ecm.platform</groupId> <artifactId>nuxeo-platform-webapp-core</artifactId> </dependency> <dependency> <groupId>org.nuxeo.ecm.platform</groupId> <artifactId>nuxeo-platform-jbpm-core</artifactId> </dependency> <dependency> <groupId>org.nuxeo.ecm.platform</groupId> <artifactId>nuxeo-platform-jbpm-web</artifactId> </dependency> <dependency> <groupId>org.nuxeo.ecm.platform</groupId> <artifactId>nuxeo-platform-filemanager-core</artifactId> </dependency> <dependency> <groupId>javax.ejb</groupId> <artifactId>ejb</artifactId> </dependency> <dependency> <groupId>javax.faces</groupId> <artifactId>jsf-api</artifactId> </dependency> <dependency> <groupId>org.jboss.seam</groupId> <artifactId>jboss-seam</artifactId> </dependency> <dependency> <groupId>org.jboss.seam</groupId> <artifactId>jboss-seam-remoting</artifactId> </dependency> <dependency> <groupId>jboss</groupId> <artifactId>jboss-annotations-ejb3</artifactId> </dependency> <dependency> <groupId>jboss</groupId> <artifactId>jboss-j2ee</artifactId> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-validator</artifactId> </dependency> <!-- Scope test --> <dependency> <groupId>org.nuxeo.ecm.core</groupId> <artifactId>nuxeo-core-storage-sql</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.nuxeo.ecm.core</groupId> <artifactId>nuxeo-core-storage-sql-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.nuxeo.runtime</groupId> <artifactId>nuxeo-runtime-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.nuxeo.runtime</groupId> <artifactId>nuxeo-runtime-osgi</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>tfmxutil2</groupId> <artifactId>tfmxutil2</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>quartz</groupId> <artifactId>quartz</artifactId> <version>1.6.5</version> </dependency> <dependency> <groupId>com.tfmx.service.quartz</groupId> <artifactId>tfmxscheduler</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>tdams-runner</groupId> <artifactId>tdams-runner</artifactId> <version>1.0.0</version> </dependency> </dependencies> <scm> <connection>scm:svn:http://hg.nuxeo.org/addons/nuxeo-sample-project/</connection> <developerConnection>scm:svn:https://hg.nuxeo.org/addons/nuxeo-sample-project/</developerConnection> <url>http://hg.nuxeo.org/addons/nuxeo-sample-project/</url> </scm> <repositories> <repository> <id>public</id> <url>http://maven.nuxeo.org/nexus/content/groups/public</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>false</enabled> </snapshots> </repository> <repository> <id>public-snapshot</id> <url>http://maven.nuxeo.org/nexus/content/groups/public-snapshot</url> <releases> <enabled>false</enabled> </releases> <snapshots> <updatePolicy>always</updatePolicy> <enabled>true</enabled> </snapshots> </repository> </repositories> </project> --- Mailing list: [email protected] Forum: http://forum.nuxeo.org/f/1/
