The generated Maven pom for upload to repository, via Maven Deployer,
contains the wrong artifactId.

   <dependency>
     <groupId>org.qi4j.core</groupId>
     <artifactId>api</artifactId>
     <version>1.3-RC1</version>
     <scope>compile</scope>
   </dependency>

"api" is generated as "qi4j-core-api" via

 if( group.startsWith('qi4j-sdk.core') )
 {
   baseName = "qi4j-core-${subProject.name}"
   group = 'org.qi4j.core'
 }

and so on.
But the generated pom for core:api is correct;

 <groupId>org.qi4j.core</groupId>
 <artifactId>qi4j-core-api</artifactId>
 <version>1.3-RC1</version>

Am I facing a bug, or is there something I might be doing incorrectly?


Cheers
-- 
Niclas Hedhman, Software Developer
http://www.qi4j.org - New Energy for Java

I live here; http://tinyurl.com/3xugrbk
I work here; http://tinyurl.com/24svnvk
I relax here; http://tinyurl.com/2cgsug

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to