Now I am creating simple application by SpringSource dm Server Tools.
I created two bundles configured by below.
### for DTO bundle ###
Manifest-Version: 1.0
Bundle-Name: Sample01_dto Bundle
Bundle-ManifestVersion: 2
Bundle-SymbolicName: sample01_dto
Bundle-Version: 1.0.0
Export-Package: sample.dto
### for DAO bundle ###
Manifest-Version: 1.0
Bundle-Name: Sample01_dao Bundle
Bundle-ManifestVersion: 2
Bundle-SymbolicName: sample01_dao
Bundle-Version: 1.0.0
Import-Package: sample.dto
DAO depends DTO.
So, DTO exports its pacage, and DAO imports DTO's package.
And, eclipse say this error:
"Import-Package: sample.dto [0.0.0, ∞) could not be resolved".
I do set "Targeted Runtimes" to dm Server instance for both bundles,
and when setting DAO's Import-Package to "sample.dto", I used code assist succecesfully.
Coulde someone tell me how to remove this error?
My environment is:
eclipse 3.4 with wtp
springsource-dm-server-1.0.0.RELEASE
springsource-dm-server-tools_updatesite_1.1.0_v200809261800
thanks,
Kouhei


