rajkiransuram / able

Automatically exported from code.google.com/p/able
0 stars 0 forks source link

able-project missing some deps #1

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
When trying to run a freshly checked out project I get some missing class 
errors. It looks like 
some of the hibernate deps didn't make it over. I copied this section to the 
able-project pom.xml 
and it fixed things.

  <!-- START: copied from hibernate-core 3.3.1.GA's pom.xml until 3.3.2 comes out -->
        <dependency>
            <groupId>antlr</groupId>
            <artifactId>antlr</artifactId>
            <version>2.7.6</version>
        </dependency>
        <dependency>
            <groupId>commons-collections</groupId>
            <artifactId>commons-collections</artifactId>
            <version>3.1</version>
        </dependency>
        <dependency>
            <groupId>dom4j</groupId>
            <artifactId>dom4j</artifactId>
            <version>1.6.1</version>
        </dependency>
        <dependency>
            <!-- YUCK, YUCK, YUCK!!!! -->
            <groupId>javax.transaction</groupId>
            <artifactId>jta</artifactId>
            <version>1.1</version>
        </dependency>
        <!-- END: copied from hibernate-core 3.3.1.GA's pom.xml until 3.3.2 comes out -->

Original issue reported on code.google.com by nate.put...@gmail.com on 5 Jan 2009 at 12:16