Quote:
> Reason: Cannot find parent:
> org.nuxeo.ecm.platform:nuxeo-dm-parent for project:
> com.tfmx.nuxeo:tfmx_tdams:jar:null for project
> com.tfmx.nuxeo:tfmx_tdams:jar:null

this means maven doesn't know where to find the pom for
nuxeo-dm-parent. By default, it will only search on
maven.org site. You need to add nuxeo repositories to your
pom so it will search there:

  <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>

---
Mailing list: [email protected]
Forum: http://forum.nuxeo.org/f/1/

Reply via email to