i have set the Project field in the first page of the wizard to the my project of course ;)
the update site from which i've installed the plugin is the following:
http://download.jboss.org/jbosstools/updates/stable/All i did is to set the Project in the first page of the wizard, then i've set an existing hibernate config file:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.password">password</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost/testDB</property>
<property name="hibernate.connection.username">user</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLInnoDBDialect</property>
<mapping class="com.example.model.Entity1/>
<!-- further mapping classes ... -->
</session-factory>
</hibernate-configuration>
Plus i've set the Type to "Annotations (jdk 1.5+)"
The exact type of the eclipse project is a combined Java/Flex project using WTP (Adobe Flex Builder 3).
Some weeks ago i have already had a working CC for this type of project, but it did not use Annotations but Mapping files.
No idea why the plugin won't find my classes though.