2010-02-10 14:17:55 -05:00
|
|
|
<?xml version="1.0"?>
|
2008-04-28 11:57:47 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2007-06-29 15:23:53 -04:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2008-04-21 20:55:03 -04:00
|
|
|
|
2007-06-29 15:23:53 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.hibernate</groupId>
|
2008-04-21 20:55:03 -04:00
|
|
|
<artifactId>hibernate-tutorials</artifactId>
|
2010-04-14 16:54:44 -04:00
|
|
|
<version>3.5.2-SNAPSHOT</version>
|
2008-04-21 20:55:03 -04:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2007-06-29 15:23:53 -04:00
|
|
|
</parent>
|
2008-04-21 20:55:03 -04:00
|
|
|
|
2007-06-29 15:23:53 -04:00
|
|
|
<groupId>org.hibernate</groupId>
|
2008-04-21 20:55:03 -04:00
|
|
|
<artifactId>hibernate-tutorial-web</artifactId>
|
2007-06-29 15:23:53 -04:00
|
|
|
<packaging>war</packaging>
|
2007-07-16 23:31:57 -04:00
|
|
|
|
2008-04-24 15:15:26 -04:00
|
|
|
<name>Hibernate Web Tutorial</name>
|
|
|
|
<description>A webapp-based tutorial project showcasing Hibernate usage</description>
|
2007-06-29 15:23:53 -04:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
<version>2.3</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2009-02-27 23:45:24 -05:00
|
|
|
</project>
|