You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@felix.apache.org by "Ingo Müller (JIRA)" <ji...@apache.org> on 2009/06/10 21:57:07 UTC

[jira] Created: (FELIX-1214) Four unclear points in the "iPOJO for Eclipse" example

Four unclear points in the "iPOJO for Eclipse" example
------------------------------------------------------

                 Key: FELIX-1214
                 URL: https://issues.apache.org/jira/browse/FELIX-1214
             Project: Felix
          Issue Type: Bug
          Components: iPOJO
         Environment: Ubuntu 8.10, Eclipse 3.3
            Reporter: Ingo Müller


Hi there!

I recently tried out iPOJO in Eclipse for a small projet for the university. Although I quite enjoy the documentation, I found a few unclear points in the Eclipse example [1], which have cost me some time and which I wanted to share.

1) The unpackage target of the build.xml says "${output.dir}/META-INF/MANIFEST.mf", although the file is called "MANIFEST.MF". This is a problem on Linux (I guess it is not on Windows)

2) The guide doesn't mention to install BND, althoug build.xml supposes its installation: <taskdef resource="aQute/bnd/ant/taskdef.properties" classpath="../../tasks/bnd-0.0.223.jar"/> Maybe it could be included in the lib folder as well.

3) <property name="lib.dir" value="libs"/> The folder libs doesn't exist... The property is not used, but it's a bit confusing.

4) I think that I had to run ant's "unpackage" target to make it work, although package is the default one. Unfortunately, I can't retest it right now.

Thanks a lot for your work!

Cheers,
Ingo


[1] http://felix.apache.org/site/apache-felix-ipojo-eclipse-integration.html

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (FELIX-1214) Four unclear points in the "iPOJO for Eclipse" example

Posted by "Clement Escoffier (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/FELIX-1214?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Clement Escoffier updated FELIX-1214:
-------------------------------------

    Assignee: Clement Escoffier

> Four unclear points in the "iPOJO for Eclipse" example
> ------------------------------------------------------
>
>                 Key: FELIX-1214
>                 URL: https://issues.apache.org/jira/browse/FELIX-1214
>             Project: Felix
>          Issue Type: Bug
>          Components: iPOJO
>         Environment: Ubuntu 8.10, Eclipse 3.3
>            Reporter: Ingo Müller
>            Assignee: Clement Escoffier
>   Original Estimate: 0.5h
>  Remaining Estimate: 0.5h
>
> Hi there!
> I recently tried out iPOJO in Eclipse for a small projet for the university. Although I quite enjoy the documentation, I found a few unclear points in the Eclipse example [1], which have cost me some time and which I wanted to share.
> 1) The unpackage target of the build.xml says "${output.dir}/META-INF/MANIFEST.mf", although the file is called "MANIFEST.MF". This is a problem on Linux (I guess it is not on Windows)
> 2) The guide doesn't mention to install BND, althoug build.xml supposes its installation: <taskdef resource="aQute/bnd/ant/taskdef.properties" classpath="../../tasks/bnd-0.0.223.jar"/> Maybe it could be included in the lib folder as well.
> 3) <property name="lib.dir" value="libs"/> The folder libs doesn't exist... The property is not used, but it's a bit confusing.
> 4) I think that I had to run ant's "unpackage" target to make it work, although package is the default one. Unfortunately, I can't retest it right now.
> Thanks a lot for your work!
> Cheers,
> Ingo
> [1] http://felix.apache.org/site/apache-felix-ipojo-eclipse-integration.html

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (FELIX-1214) Four unclear points in the "iPOJO for Eclipse" example

Posted by "Clement Escoffier (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/FELIX-1214?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Clement Escoffier resolved FELIX-1214.
--------------------------------------

    Resolution: Fixed

> Four unclear points in the "iPOJO for Eclipse" example
> ------------------------------------------------------
>
>                 Key: FELIX-1214
>                 URL: https://issues.apache.org/jira/browse/FELIX-1214
>             Project: Felix
>          Issue Type: Bug
>          Components: iPOJO
>         Environment: Ubuntu 8.10, Eclipse 3.3
>            Reporter: Ingo Müller
>            Assignee: Clement Escoffier
>   Original Estimate: 0.5h
>  Remaining Estimate: 0.5h
>
> Hi there!
> I recently tried out iPOJO in Eclipse for a small projet for the university. Although I quite enjoy the documentation, I found a few unclear points in the Eclipse example [1], which have cost me some time and which I wanted to share.
> 1) The unpackage target of the build.xml says "${output.dir}/META-INF/MANIFEST.mf", although the file is called "MANIFEST.MF". This is a problem on Linux (I guess it is not on Windows)
> 2) The guide doesn't mention to install BND, althoug build.xml supposes its installation: <taskdef resource="aQute/bnd/ant/taskdef.properties" classpath="../../tasks/bnd-0.0.223.jar"/> Maybe it could be included in the lib folder as well.
> 3) <property name="lib.dir" value="libs"/> The folder libs doesn't exist... The property is not used, but it's a bit confusing.
> 4) I think that I had to run ant's "unpackage" target to make it work, although package is the default one. Unfortunately, I can't retest it right now.
> Thanks a lot for your work!
> Cheers,
> Ingo
> [1] http://felix.apache.org/site/apache-felix-ipojo-eclipse-integration.html

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (FELIX-1214) Four unclear points in the "iPOJO for Eclipse" example

Posted by "Clement Escoffier (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/FELIX-1214?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Clement Escoffier updated FELIX-1214:
-------------------------------------


Hi,

Thanks for these comments. I fixed the issues:
- MANIFEST.mf => MANIFEST.MF
- BND is now embedded in the project
- the lib.dir is now used to set the library location
- unpackage became the default target (wihich is the one to use)

So, you can redownload the new project from the wiki, or download the SVN version from http://svn.apache.org/viewvc/felix/sandbox/clement/ipojo-utils/eclipse-integration/

Regards,

Clement

> Four unclear points in the "iPOJO for Eclipse" example
> ------------------------------------------------------
>
>                 Key: FELIX-1214
>                 URL: https://issues.apache.org/jira/browse/FELIX-1214
>             Project: Felix
>          Issue Type: Bug
>          Components: iPOJO
>         Environment: Ubuntu 8.10, Eclipse 3.3
>            Reporter: Ingo Müller
>            Assignee: Clement Escoffier
>   Original Estimate: 0.5h
>  Remaining Estimate: 0.5h
>
> Hi there!
> I recently tried out iPOJO in Eclipse for a small projet for the university. Although I quite enjoy the documentation, I found a few unclear points in the Eclipse example [1], which have cost me some time and which I wanted to share.
> 1) The unpackage target of the build.xml says "${output.dir}/META-INF/MANIFEST.mf", although the file is called "MANIFEST.MF". This is a problem on Linux (I guess it is not on Windows)
> 2) The guide doesn't mention to install BND, althoug build.xml supposes its installation: <taskdef resource="aQute/bnd/ant/taskdef.properties" classpath="../../tasks/bnd-0.0.223.jar"/> Maybe it could be included in the lib folder as well.
> 3) <property name="lib.dir" value="libs"/> The folder libs doesn't exist... The property is not used, but it's a bit confusing.
> 4) I think that I had to run ant's "unpackage" target to make it work, although package is the default one. Unfortunately, I can't retest it right now.
> Thanks a lot for your work!
> Cheers,
> Ingo
> [1] http://felix.apache.org/site/apache-felix-ipojo-eclipse-integration.html

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.