Hi Cristian

Thanks for providing me with your feedback.

I did finally solve this problem by downloading and compiling it
locally.

http://svn.codehaus.org/mojo/trunk/mojo/mojo-sandbox/maven-hibernate3/hi
bernate3-maven-plugin/

my pom.xml is setup as follows

  <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate</artifactId>
            <version>3.1.2</version>
        </dependency>
        <dependency>
            <groupId>hsqldb</groupId>
            <artifactId>hsqldb</artifactId>
            <version>1.8.0.4</version>
        </dependency>
  </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>hibernate3-maven-plugin</artifactId>
                <version>1.0-SNAPSHOT</version>
                <executions>
                    <execution>
                        <id>generate-hibernate</id>
                        <phase>generate-sources</phase>
                        <configuration>
                            <hibernate>
 
<configurationFile>/src/main/resources/hibernate.cfg.xml</configurationF
ile>
                            </hibernate>
                            <outputDirectory>
 
<hbm2cfgxml>src/main/resources</hbm2cfgxml>
 
<hbm2java>target/hibernate3/generated-sources</hbm2java>
                            </outputDirectory>
                        </configuration>
                        <goals>
                            <goal>hbm2java</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
        <extensions>
            <extension>
                <groupId>hsqldb</groupId>
                <artifactId>hsqldb</artifactId>
                <version>1.8.0.4</version>
            </extension>
        </extensions>
    </build>


Hope it helps :)

Thanks
Lakshman


> -----Original Message-----
> From: Cristian Jansenson [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, 15 August 2006 11:07 AM
> To: Lakshman Srilakshmanan
> Subject: RE: Hibernate plugin not binding?
> 
> No problem...  and I didn't resolve this problem.  My understanding on
this
> issue is that, as of the date I reported it, it was not resolved.
> Furthermore, some people informally solved the problem by modifying
the
> plugin; However, they didn't submit the fix because it was a hack more
than
> a real fix.  I suspect this issue will be addressed with the official
> version of the pluggin.
> 
> Cristian
> 
> -----Original Message-----
> From: Lakshman Srilakshmanan
> [mailto:[EMAIL PROTECTED]
> Sent: Sunday, August 13, 2006 8:10 PM
> To: [EMAIL PROTECTED]
> Subject: Hibernate plugin not binding?
> 
> Hi Cristian
> 
> Sorry for contacting you directly, but did you resolve the above issue
> 
> I have included a link to the above problem you raised for your
> convenience.
> http://www.mail-archive.com/users@maven.apache.org/msg41711.html
> 
> 
> Your assistance is greatly appreciated.
> 
> Thanks
> Lakshman
> 



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to