Based on your suggestion, this is my new pom.xml: http://pastie.org/4064465
These are the new errors: http://pastie.org/4064470 I tried adding these dependencies to my pom.xml, but I'm back to errors in in the first question. <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-annotations</artifactId> <version>3.5.6-Final</version> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-entitymanager</artifactId> <version>3.6.3.Final</version> </dependency> Is the documentation at https://wiki.jasig.org/display/CASUM/Configuring outdated or am I missing some steps here? On Sun, Jun 10, 2012 at 6:11 PM, Ronen Itkin <[email protected]> wrote: > Hey, > > Try to add the following dependency in the same pom.xml (it should help > clearing out some errors from the log..): > > <dependency> > <groupId>org.hibernate</groupId> > <artifactId>hibernate-core</artifactId> > <version>${hibernate.core.version}</version> > <type>jar</type> > </dependency> > > > > > On Sun, Jun 10, 2012 at 12:36 PM, amree <[email protected]> wrote: > >> Based on your suggestion, this is my new pom.xml: >> http://pastie.org/4060649 and when I deployed it, I got new errors: >> http://pastie.org/4060672 >> By the way, this is my deployerConfigContext.xml: >> http://pastie.org/private/flapjccnibbhmmp1izgong >> >> >> On Sun, Jun 10, 2012 at 5:17 PM, Ronen Itkin <[email protected]> wrote: >> >>> Hey amree, >>> >>> Put those dependencies in your "cas-server-webapp/pom.xml", it works for >>> me. >>> >>> <dependency> >>> <groupId>org.jasig.cas</groupId> >>> <artifactId>cas-server-support-jdbc</artifactId> >>> <version>${parent.version}</version> >>> </dependency> >>> <dependency> >>> <groupId>commons-dbcp</groupId> >>> <artifactId>commons-dbcp</artifactId> >>> <version>1.4</version> >>> </dependency> >>> <dependency> >>> <groupId>commons-pool</groupId> >>> <artifactId>commons-pool</artifactId> >>> <version>1.5.4</version> >>> </dependency> >>> <dependency> >>> <groupId>mysql</groupId> >>> <artifactId>mysql-connector-java</artifactId> >>> <version>5.1.18</version> >>> </dependency> >>> >>> >>> On Sun, Jun 10, 2012 at 11:44 AM, amree <[email protected]> wrote: >>> >>>> What's the correct pom.xml for configuring services with MySQL? >>>> >>>> I'm getting these errors <http://pastie.org/4060499>when I deployed my >>>> cas to Tomcat. You guys can see my current pom.xml >>>> here<http://pastie.org/4060503> >>>> . >>>> >>>> Thanks in advance. >>>> >>>> -- >>>> You are currently subscribed to [email protected] as: >>>> [email protected] >>>> >>>> >>>> To unsubscribe, change settings or access archives, see >>>> http://www.ja-sig.org/wiki/display/JSG/cas-user >>>> >>>> >>> >>> >>> -- >>> * >>> Ronen Itkin* >>> Taykey | www.taykey.com >>> >>> -- >>> You are currently subscribed to [email protected] as: >>> [email protected] >>> >>> >>> >>> >>> To unsubscribe, change settings or access archives, see >>> http://www.ja-sig.org/wiki/display/JSG/cas-user >>> >>> >> -- >> You are currently subscribed to [email protected] as: [email protected] >> To unsubscribe, change settings or access archives, see >> http://www.ja-sig.org/wiki/display/JSG/cas-user >> >> > > > -- > * > Ronen Itkin* > Taykey | www.taykey.com > > -- > You are currently subscribed to [email protected] as: > [email protected] > > To unsubscribe, change settings or access archives, see > http://www.ja-sig.org/wiki/display/JSG/cas-user > > -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user
