[ 
http://issues.ops4j.org/browse/PAXCONSTRUCT-108?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12307#action_12307
 ] 

Stuart McCulloch commented on PAXCONSTRUCT-108:
-----------------------------------------------

FYI, the manifest created by the "eclipse" goal is pulled from the bundle, so 
you must make sure the bundle is at least packaged or installed:

   mvn install org.ops4j:maven-pax-plugin:eclipse

Btw, if you use Pax-Construct to create your projects (or you have the pax 
plugin listed in your build plugins) you can use the shorthand form:

   mvn install pax:eclipse

To build the Eclipse manifest automatically on every "mvn install" / "mvn 
package" you can attach the eclipse goal to the packaging phase:

      <plugin>
        <groupId>org.ops4j</groupId>
        <artifactId>maven-pax-plugin</artifactId>
        <version>1.4</version>
        <executions>
          <execution>
            <id>ide-support</id>
            <goals>
              <goal>eclipse</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

The projects generated by Pax-Construct have this in the top-level pom 
(commented out by default)

> MANIFEST.MF file is not refreshed (or even recreated after a delete) by the 
> command mvn org.ops4j:maven-pax-plugin:compile
> --------------------------------------------------------------------------------------------------------------------------
>
>                 Key: PAXCONSTRUCT-108
>                 URL: http://issues.ops4j.org/browse/PAXCONSTRUCT-108
>             Project: Pax Construct
>          Issue Type: Bug
>          Components: maven-pax-plugin
>    Affects Versions: 1.4
>            Reporter: Charles Moulliard
>            Assignee: Stuart McCulloch
>
> The content of the file MANIFEST.MF is not refreshed (or even recreated after 
> a delete) by the command mvn org.ops4j:maven-pax-plugin:compile

-- 
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