2008/10/10 Stefano Kismet Lenzi <[EMAIL PROTECTED]>

> Hi All,
>
> I was trying to add bootDelegation and classpath options to pax-runner
> from the maven-pax-plugin. I have tried by adding this line in the
> following plugin configuration:
> <args>file:src/test/resources/pax.args</args>
> and the file pax.args contains the following lines:
>
> --bootDelegation=org.apache.commons.*,org.apache.log4j.*,com.martiansoftware.*,com.thoughtworks.*,edu.uci.ics.*
> --classpath=src/test/resources/dependencies.jar
>
> (I have tried also with full-qualified-pathname but the result is the same)
>
> When I lunch pax:run the plugin is able to let pax-runner start but my
> bundle fail to load because either bootDelegation or the classpath is
> not correct.
> Do you have any suggestions?
>

well, with the following line in src/test/resources/pax.args:

  --log=DEBUG

and the following pom configuration:

      <plugin>
        <groupId>org.ops4j</groupId>
        <artifactId>maven-pax-plugin</artifactId>
        <configuration>
          <args>file:src/test/resources/pax.args</args>
        </configuration>
      </plugin>

I can see debug output, so the file is reaching pax-runner... perhaps you
could try
with debug on to see why pax-runner doesn't seem to be applying these
settings


> Ciao,
> Stefano "Kismet" Lenzi
>
> _______________________________________________
> general mailing list
> general@lists.ops4j.org
> http://lists.ops4j.org/mailman/listinfo/general
>

-- 
Cheers, Stuart
_______________________________________________
general mailing list
general@lists.ops4j.org
http://lists.ops4j.org/mailman/listinfo/general

Reply via email to