[ 
http://jira.amdatu.org/jira/browse/AMDATU-102?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ivo Ladage - van Doorn closed AMDATU-102.
-----------------------------------------


Reactor build doesn't work right now since Pax Exam requires bundles to be 
available in the Maven repository. See 
http://jira.amdatu.org/jira/browse/AMDATU-120

> Reactor build breaks due to missing depdency.type for non jar dependecies
> -------------------------------------------------------------------------
>
>                 Key: AMDATU-102
>                 URL: http://jira.amdatu.org/jira/browse/AMDATU-102
>             Project: Amdatu
>          Issue Type: Bug
>          Components: Maven setup
>    Affects Versions: 0.0.4
>         Environment: Apache Maven 2.2.1 (r801777; 2009-08-06 21:16:01+0200)
> Java version: 1.6.0_21
> Java home: C:\Program Files (x86)\Java\jdk1.6.0_21\jre
> Default locale: nl_NL, platform encoding: Cp1252
> OS name: "windows 7" version: "6.1" arch: "x86" Family: "windows"
>            Reporter: Bram de Kruijff
>            Assignee: Ivo Ladage - van Doorn
>             Fix For: 0.0.5
>
>         Attachments: AMDATU-102_add-dependency-type.patch
>
>
> In several modules there are 'internal' dependencies on non-jar artifacts 
> that do not specify the dependency.type to be bundle. This causes reactor 
> builds to fail with something like..
> [ERROR] BUILD ERROR
> [INFO] ----------------------------------------------------
> [INFO] Failed to resolve artifact.
> Missing:
> ----------
> 1) org.amdatu.platform:config-template-manager:jar:0.0.4
> This is due to the fact that maven uses the type jar as default while there 
> is no jar artifact for that groupid/artifactid in the reactor. The only 
> reason why it wont break in an install is that the artifact has been deployed 
> to the local repository and bundle artifact happen to have the same filename 
> extension.
> So..
>               <dependency>
>                       <groupId>org.amdatu.platform</groupId>
>                       <artifactId>httpcontext</artifactId>
>                       <scope>provided</scope> 
>               </dependency>           
> .. should be 
>               <dependency>
>                       <groupId>org.amdatu.platform</groupId>
>                       <artifactId>httpcontext</artifactId>
>                       <scope>provided</scope> 
>                       <type>bundle</type>     
>               </dependency>           

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://jira.amdatu.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to