-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 15 posts ] 
Author Message
 Post subject: Hibernate Eclipse Plugin
PostPosted: Tue Dec 09, 2008 7:15 am 
Newbie

Joined: Tue Dec 09, 2008 6:55 am
Posts: 12
Hi,

I just tried out the Hibernate Eclipse Plugin and its really great! Could you please let me know when the release is expected to come out of beta.

Also, I'm unable to view the values of a collection and components in the Properties View after executing a Query. I dont know if i'm missing something or if this isnt supported.

It would also be great if the text editor can highlight syntax errors and place the cursor on that line on double-clicking the error message.

Thanks!

Regards
Kaizer


Top
 Profile  
 
 Post subject: Re: Hibernate Eclipse Plugin
PostPosted: Wed Dec 10, 2008 7:45 am 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 6:10 am
Posts: 8615
Location: Neuchatel, Switzerland (Danish)
kaizers wrote:
Hi,

I just tried out the Hibernate Eclipse Plugin and its really great! Could you please let me know when the release is expected to come out of beta.


Q1/09

Quote:
Also, I'm unable to view the values of a collection and components in the Properties View after executing a Query. I dont know if i'm missing something or if this isnt supported.


if collection is mapped the properties view should show them if you expand them.

Quote:
It would also be great if the text editor can highlight syntax errors and place the cursor on that line on double-clicking the error message.


which text editor ?

_________________
Max
Don't forget to rate


Top
 Profile  
 
 Post subject:
PostPosted: Wed Dec 10, 2008 9:02 am 
Newbie

Joined: Tue Dec 09, 2008 6:55 am
Posts: 12
Hi,

My mapping contains a <component > inside my <class> definition as -

<component name="nameVO" class="com.hibernate.test.NameVO">
<property name="firstName1" column="FIRSTNAME1"/>
<property name="middleName1" column="MIDDLENAME1"/>
<property name="lastName1" column="LASTNAME1"/>
</component>

My collection is mapped using <idbag>.

On running the query using the HQL Editor in the Eclipse Plugin, I am unable to view the details under "nameVO" as well as my collection. However, if run the query through my Java application, i get the entire object graph.


I was referring to the HQL Editor in the Eclipse Plugin.

Thanks

Regards
Kaizer


Top
 Profile  
 
 Post subject:
PostPosted: Sun Dec 14, 2008 5:33 pm 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 6:10 am
Posts: 8615
Location: Neuchatel, Switzerland (Danish)
ah - known issue of the view that it stops with component collections. sorry, I forgot about that one.

_________________
Max
Don't forget to rate


Top
 Profile  
 
 Post subject:
PostPosted: Tue Dec 16, 2008 4:43 am 
Newbie

Joined: Tue Dec 09, 2008 6:55 am
Posts: 12
Hi,

Should I add it in Jira? Could you please give me a timeframe by when this will get fixed?

Regards
Kaizer


Top
 Profile  
 
 Post subject:
PostPosted: Sat Dec 20, 2008 5:47 am 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 6:10 am
Posts: 8615
Location: Neuchatel, Switzerland (Danish)
No timeframe - not on our urgent todo list.

If someone contributes a patch it will be done faster.

_________________
Max
Don't forget to rate


Top
 Profile  
 
 Post subject: Re: Hibernate Eclipse Plugin
PostPosted: Fri Sep 04, 2009 6:04 am 
Newbie

Joined: Thu Sep 03, 2009 3:14 am
Posts: 2
Hi,
I have fixed the issue for component by adding a ComponentPropertySource to plugin code.
Will submit the patch after cleaning it up.

However while trying to make the plugin working with Hibernate3.3.1 for our requirement we are still facing the issue related to collection using idbag
It gives the exception
Code:
org.hibernate.HibernateException: Unable to resolve property: _com
                at org.hibernate.tuple.entity.EntityMetamodel.getPropertyIndex(EntityMetamodel.java:473)
                at org.hibernate.tuple.entity.AbstractEntityTuplizer.getPropertyValue(AbstractEntityTuplizer.java:309)
                at org.hibernate.persister.entity.AbstractEntityPersister.getPropertyValue(AbstractEntityPersister.java:3614)
                at org.hibernate.eclipse.console.views.properties.EntityPropertySource.getPropertyValue(EntityPropertySource.java:118)
                at org.eclipse.ui.views.properties.PropertySheetEntry.refreshValues(PropertySheetEntry.java:611)


I debugged and found that Hibernate3.3.x creates a property name _com.hibernate.test.ClientVO.addressListBackref and tries to resolve the propertyvalue by splitting it by dot and hence the exception
Hibernate3.2.x was creating just _addressListBackref and so it works fine.

For the time being I've fixed this also by adding a hardcoded check for "Backref" so as not to add the propertyDescriptor for this property.

Any clue what should be clean way to fix this?


Top
 Profile  
 
 Post subject: Re: Hibernate Eclipse Plugin
PostPosted: Fri Sep 04, 2009 7:47 am 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 6:10 am
Posts: 8615
Location: Neuchatel, Switzerland (Danish)
arjunk wrote:
Hi,
I have fixed the issue for component by adding a ComponentPropertySource to plugin code.
Will submit the patch after cleaning it up.

However while trying to make the plugin working with Hibernate3.3.1 for our requirement we are still facing the issue related to collection using idbag
It gives the exception
Code:
org.hibernate.HibernateException: Unable to resolve property: _com
                at org.hibernate.tuple.entity.EntityMetamodel.getPropertyIndex(EntityMetamodel.java:473)
                at org.hibernate.tuple.entity.AbstractEntityTuplizer.getPropertyValue(AbstractEntityTuplizer.java:309)
                at org.hibernate.persister.entity.AbstractEntityPersister.getPropertyValue(AbstractEntityPersister.java:3614)
                at org.hibernate.eclipse.console.views.properties.EntityPropertySource.getPropertyValue(EntityPropertySource.java:118)
                at org.eclipse.ui.views.properties.PropertySheetEntry.refreshValues(PropertySheetEntry.java:611)


I debugged and found that Hibernate3.3.x creates a property name _com.hibernate.test.ClientVO.addressListBackref and tries to resolve the propertyvalue by splitting it by dot and hence the exception
Hibernate3.2.x was creating just _addressListBackref and so it works fine.

For the time being I've fixed this also by adding a hardcoded check for "Backref" so as not to add the propertyDescriptor for this property.

Any clue what should be clean way to fix this?


look for backref checks in the code - we do this already.

Where in the code do you need it ?

/max

_________________
Max
Don't forget to rate


Top
 Profile  
 
 Post subject: Re: Hibernate Eclipse Plugin
PostPosted: Fri Sep 04, 2009 8:51 am 
Newbie

Joined: Thu Sep 03, 2009 3:14 am
Posts: 2
Where have you done such checks?
I tried searching but couldn't find any.

I've added something like !propertyNames[i].contains("Backref") before creating PropertyDescriptor in EntityPropertySource.initializePropertyDescriptors
Of course as it looks it just a temporary hack.

I am working on a code checked out from http://anonsvn.jboss.org/repos/jbosstoo ... rnatetools


Top
 Profile  
 
 Post subject: Re: Hibernate Eclipse Plugin
PostPosted: Sun Sep 06, 2009 12:31 pm 
Newbie

Joined: Wed Aug 26, 2009 6:23 am
Posts: 6
Hello,

I am new to hibernate, and am trying to integrate hibernate with eclipse ganymade (3.4). I tried integrating it via software updates using the link https://www.hibernate.org/255.html,

this gives me an error no repository found. Adding the same externally by downloading and extracting it to the dropins folder gives me other errors.

Could you please guide me or give me a suitable link I can use to help guide me. I tried the Hibernate Tools Reference Guide, but it didn't work.

Thanks in advance,
Radha


Top
 Profile  
 
 Post subject: Re: Hibernate Eclipse Plugin
PostPosted: Sun Sep 06, 2009 12:32 pm 
Newbie

Joined: Wed Aug 26, 2009 6:23 am
Posts: 6
Hello,

I am new to hibernate, and am trying to integrate hibernate with eclipse ganymade (3.4). I tried integrating it via software updates using the link https://www.hibernate.org/255.html,

this gives me an error no repository found. Adding the same externally by downloading and extracting it to the dropins folder gives me other errors.

Could you please guide me or give me a suitable link I can use to help guide me. I tried the Hibernate Tools Reference Guide, but it didn't work.

Thanks in advance,
Radha


Top
 Profile  
 
 Post subject: Re: Hibernate Eclipse Plugin
PostPosted: Wed Sep 09, 2009 12:27 am 
Newbie

Joined: Wed Aug 26, 2009 6:23 am
Posts: 6
vyemialyanchyk wrote:
Radha, here are steps how to install Hibernate tools for Eclipse 3.5:
http://loracular.blogspot.com/2009/09/s ... s-for.html
may be this link will be helpful.


Hello,

We use Eclipse Ganymede (3.4) at work. I need to integrate hibernate tools with eclipse(3.4). I am new to it can u please guide me.

I tried doing it with software updates through eclipse, with the link provided in 'Hibernate Tools Reference Guide' - JBoss Tools Update Site [http://download.jboss.org/jbosstools/
updates/stable/]

it gives me the error 'The software items you selected may not be valid with your current installation'

Details:
Cannot complete the request. See the details.
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.monitoring.runtime.feature.group/4.4.100
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.platform.runtime.feature.group/4.5.1
Unsatisfied dependency: [org.jboss.tools.birt.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.birt.integration.wtp.feature.group/[2.3.1,3.0.0)
Unsatisfied dependency: [org.jboss.tools.birt.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.birt.integration.wtp.ui/[2.3.2.r232_20090122,2.3.2.r232_20090122]
Unsatisfied dependency: [org.jboss.tools.birt.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.birt.feature.group/[2.3.1,3.0.0)
Unsatisfied dependency: [org.jboss.tools.seam.feature.feature.group 3.0.1.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.datatools.connectivity.feature.feature.group/1.6.1
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.platform.profile.server.feature.group/4.3.200
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.monitoring.profile.server.feature.group/4.2.200
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.test.runtime.feature.group/4.3.300
Unsatisfied dependency: [org.jboss.tools.seam.feature.feature.group 3.0.1.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.datatools.enablement.jdbc.feature.feature.group/1.6.1
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.trace.runtime.feature.group/4.3.200
Unsatisfied dependency: [org.jboss.tools.birt.core 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.birt.integration.wtp.ui/0.0.0
Unsatisfied dependency: [org.jboss.tools.eclipse.as.tptp 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.tptp.platform.profile.server.core/0.0.0
Unsatisfied dependency: [org.jboss.tools.eclipse.as.tptp 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.hyades.trace.ui/0.0.0
Unsatisfied dependency: [org.jboss.tools.eclipse.as.tptp 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.tptp.platform.execution/0.0.0
Unsatisfied dependency: [org.jboss.tools.eclipse.as.tptp 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.tptp.platform.instrumentation.ui/0.0.0
Unsatisfied dependency: [org.jboss.tools.eclipse.as.tptp 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.tptp.platform.jvmti.client/0.0.0
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.jboss.tools.eclipse.as.tptp/[1.0.0.GA-R200905070146-H18,1.0.0.GA-R200905070146-H18]
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.platform.profile.server.feature.group/4.3.200
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.monitoring.profile.server.feature.group/4.2.200
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.test.runtime.feature.group/4.3.300
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.monitoring.runtime.feature.group/4.4.100
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.trace.runtime.feature.group/4.3.200
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.platform.runtime.feature.group/4.5.1
Unsatisfied dependency: [org.jboss.tools.birt.core 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.birt.integration.wtp.ui/0.0.0
Unsatisfied dependency: [org.jboss.tools.birt.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.jboss.tools.birt.core/[1.0.0.GA-R200905070146-H18,1.0.0.GA-R200905070146-H18]
Unsatisfied dependency: [org.jboss.tools.birt.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.birt.integration.wtp.ui/[2.3.2.r232_20090122,2.3.2.r232_20090122]
Unsatisfied dependency: [org.jboss.tools.birt.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.birt.feature.group/[2.3.1,3.0.0)
Unsatisfied dependency: [org.jboss.tools.birt.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.birt.integration.wtp.feature.group/[2.3.1,3.0.0)
Unsatisfied dependency: [org.jboss.tools.esb.feature.feature.group 1.1.1.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.jboss.tools.esb.project.ui/[1.1.1.GA-R200905070146-H18,1.1.1.GA-R200905070146-H18]
Unsatisfied dependency: [org.jboss.tools.eclipse.as.tptp 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.tptp.platform.profile.server.core/0.0.0
Unsatisfied dependency: [org.jboss.tools.eclipse.as.tptp 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.tptp.platform.jvmti.client/0.0.0
Unsatisfied dependency: [org.jboss.tools.eclipse.as.tptp 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.hyades.trace.ui/0.0.0
Unsatisfied dependency: [org.jboss.tools.eclipse.as.tptp 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.tptp.platform.execution/0.0.0
Unsatisfied dependency: [org.jboss.tools.eclipse.as.tptp 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.tptp.platform.instrumentation.ui/0.0.0
Unsatisfied dependency: [org.jboss.tools.esb.project.ui 1.1.1.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.jdt.ui/3.4.1
Unsatisfied dependency: [org.jboss.tools.seam.feature.feature.group 3.0.1.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.datatools.connectivity.feature.feature.group/1.6.1
Unsatisfied dependency: [org.jboss.tools.seam.feature.feature.group 3.0.1.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.datatools.enablement.jdbc.feature.feature.group/1.6.1


Thanks in advance,
Radha


Top
 Profile  
 
 Post subject: Re: Hibernate Eclipse Plugin
PostPosted: Wed Sep 16, 2009 5:12 pm 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 6:10 am
Posts: 8615
Location: Neuchatel, Switzerland (Danish)
arjunk wrote:
Where have you done such checks?
I tried searching but couldn't find any.


Property has a method called isBackRef() you can use to check.

Search for "backref" in https://svn.jboss.org/repos/hibernate/b ... eExt/tools which contains the src for hibernate tools core jar.

_________________
Max
Don't forget to rate


Top
 Profile  
 
 Post subject: Re: Hibernate Eclipse Plugin
PostPosted: Thu Sep 17, 2009 9:01 am 
Newbie

Joined: Wed Aug 26, 2009 6:23 am
Posts: 6
max wrote:
arjunk wrote:
Where have you done such checks?
I tried searching but couldn't find any.


Property has a method called isBackRef() you can use to check.

Search for "backref" in https://svn.jboss.org/repos/hibernate/b ... eExt/tools which contains the src for hibernate tools core jar.



I have now succeeded in configuring eclipse with hibernate, but am still unable to open .hbm.xml files with the console, read in a forum that i need to install all the dependencies in jboss tools link provided in 'Hibernate Tools Reference Guide' - JBoss Tools Update Site [http://download.jboss.org/jbosstools/updates/stable/]

but doing so gives me the following error, 'The software items you selected may not be valid with your current installation'

Details:
Cannot complete the request. See the details.
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.monitoring.runtime.feature.group/4.4.100
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.platform.runtime.feature.group/4.5.1
Unsatisfied dependency: [org.jboss.tools.birt.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.birt.integration.wtp.feature.group/[2.3.1,3.0.0)
Unsatisfied dependency: [org.jboss.tools.birt.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.birt.integration.wtp.ui/[2.3.2.r232_20090122,2.3.2.r232_20090122]
Unsatisfied dependency: [org.jboss.tools.birt.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.birt.feature.group/[2.3.1,3.0.0)
Unsatisfied dependency: [org.jboss.tools.seam.feature.feature.group 3.0.1.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.datatools.connectivity.feature.feature.group/1.6.1
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.platform.profile.server.feature.group/4.3.200
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.monitoring.profile.server.feature.group/4.2.200
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.test.runtime.feature.group/4.3.300
Unsatisfied dependency: [org.jboss.tools.seam.feature.feature.group 3.0.1.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.datatools.enablement.jdbc.feature.feature.group/1.6.1
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.trace.runtime.feature.group/4.3.200
Unsatisfied dependency: [org.jboss.tools.birt.core 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.birt.integration.wtp.ui/0.0.0
Unsatisfied dependency: [org.jboss.tools.eclipse.as.tptp 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.tptp.platform.profile.server.core/0.0.0
Unsatisfied dependency: [org.jboss.tools.eclipse.as.tptp 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.hyades.trace.ui/0.0.0
Unsatisfied dependency: [org.jboss.tools.eclipse.as.tptp 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.tptp.platform.execution/0.0.0
Unsatisfied dependency: [org.jboss.tools.eclipse.as.tptp 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.tptp.platform.instrumentation.ui/0.0.0
Unsatisfied dependency: [org.jboss.tools.eclipse.as.tptp 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.tptp.platform.jvmti.client/0.0.0
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.jboss.tools.eclipse.as.tptp/[1.0.0.GA-R200905070146-H18,1.0.0.GA-R200905070146-H18]
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.platform.profile.server.feature.group/4.3.200
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.monitoring.profile.server.feature.group/4.2.200
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.test.runtime.feature.group/4.3.300
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.monitoring.runtime.feature.group/4.4.100
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.trace.runtime.feature.group/4.3.200
Unsatisfied dependency: [org.jboss.tools.tptp.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.tptp.platform.runtime.feature.group/4.5.1
Unsatisfied dependency: [org.jboss.tools.birt.core 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.birt.integration.wtp.ui/0.0.0
Unsatisfied dependency: [org.jboss.tools.birt.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.jboss.tools.birt.core/[1.0.0.GA-R200905070146-H18,1.0.0.GA-R200905070146-H18]
Unsatisfied dependency: [org.jboss.tools.birt.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.birt.integration.wtp.ui/[2.3.2.r232_20090122,2.3.2.r232_20090122]
Unsatisfied dependency: [org.jboss.tools.birt.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.birt.feature.group/[2.3.1,3.0.0)
Unsatisfied dependency: [org.jboss.tools.birt.feature.feature.group 1.0.0.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.birt.integration.wtp.feature.group/[2.3.1,3.0.0)
Unsatisfied dependency: [org.jboss.tools.esb.feature.feature.group 1.1.1.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.jboss.tools.esb.project.ui/[1.1.1.GA-R200905070146-H18,1.1.1.GA-R200905070146-H18]
Unsatisfied dependency: [org.jboss.tools.eclipse.as.tptp 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.tptp.platform.profile.server.core/0.0.0
Unsatisfied dependency: [org.jboss.tools.eclipse.as.tptp 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.tptp.platform.jvmti.client/0.0.0
Unsatisfied dependency: [org.jboss.tools.eclipse.as.tptp 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.hyades.trace.ui/0.0.0
Unsatisfied dependency: [org.jboss.tools.eclipse.as.tptp 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.tptp.platform.execution/0.0.0
Unsatisfied dependency: [org.jboss.tools.eclipse.as.tptp 1.0.0.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.tptp.platform.instrumentation.ui/0.0.0
Unsatisfied dependency: [org.jboss.tools.esb.project.ui 1.1.1.GA-R200905070146-H18] requiredCapability: osgi.bundle/org.eclipse.jdt.ui/3.4.1
Unsatisfied dependency: [org.jboss.tools.seam.feature.feature.group 3.0.1.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.datatools.connectivity.feature.feature.group/1.6.1
Unsatisfied dependency: [org.jboss.tools.seam.feature.feature.group 3.0.1.GA-R200905070146-H18] requiredCapability: org.eclipse.equinox.p2.iu/org.eclipse.datatools.enablement.jdbc.feature.feature.group/1.6.1

Also how do I generate the domain model and the relational schema with eclipse.

Thanks and regards,
Radha


Top
 Profile  
 
 Post subject: Re: Hibernate Eclipse Plugin
PostPosted: Sun Sep 20, 2009 5:12 am 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 6:10 am
Posts: 8615
Location: Neuchatel, Switzerland (Danish)
dont install the Birt and TPTP plugins if you don't need them.
They require birt and tptp installed and it seems like the updatesite for them
is not always responding or if you have chosen to not look at other updatesites
when installing it wont be possible to install.

_________________
Max
Don't forget to rate


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 15 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.