maven-pax-plugin always uses all artifacts produced by multimodule projects
---------------------------------------------------------------------------

                 Key: PAXCONSTRUCT-114
                 URL: http://issues.ops4j.org/browse/PAXCONSTRUCT-114
             Project: Pax Construct
          Issue Type: Bug
          Components: maven-pax-plugin
    Affects Versions: 1.4
            Reporter: Richard Wallace
            Assignee: 


I have a project with a structure like

catalog/pom.xml
    api/pom.xml
    core/pom.xml
    rest/pom.xml
    ui/pom.xml

I'd like to be able to configure the rest and ui modules to run the pax:run 
goal in the pre-integration-test phase, do their own integration tests, and 
then stop the framework.  Problem is, when I configure the rest/pom.xml with 

{code}
      <plugin>
        <groupId>org.ops4j</groupId>
        <artifactId>maven-pax-plugin</artifactId>
        <version>1.4</version>
        <executions>
          <execution>
            <id>start-framework</id>
            <phase>pre-integration-test</phase>
            <goals>
              <goal>run</goal>
            </goals>
            <configuration>
              <framework>felix</framework>
              <noDependencies>true</noDependencies>
              <provision>
                
<provision>mvn:org.ops4j.pax.web/pax-web-service/${pax.web.version}</provision>
              </provision>
            </configuration>
          </execution>
        </executions>
      </plugin>
{code}

it always includes all the bundles produced by the multimodule project, 
including api, core and ui.  I don't really want the ui bundle installed in 
this situation.

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

        

_______________________________________________
general mailing list
[email protected]
http://lists.ops4j.org/mailman/listinfo/general

Reply via email to