I just noticed that the cdi-api 1.0 pom on repo1 has dependencies/references to non standard projects:

..
   <parent> 
      <groupId>org.jboss.weld</groupId> 
      <artifactId>weld-api-parent</artifactId> 
      <version>1.0</version> 
      <relativePath>../parent/pom.xml</relativePath> 
   </parent> 
..   
      <dependency> 
         <groupId>org.jboss.ejb3</groupId> 
         <artifactId>jboss-ejb3-api</artifactId> 
         <optional>true</optional> 
      </dependency> 
 
      <dependency> 
         <groupId>org.jboss.interceptor</groupId> 
         <artifactId>jboss-interceptor-api</artifactId> 
      </dependency>    
..

Is this correct ?


-aslak-