2008-04-28 15:57:47 +00: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 19:23:53 +00:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2008-04-22 00:55:03 +00:00
|
|
|
|
2007-06-29 19:23:53 +00:00
|
|
|
<parent>
|
|
|
|
<groupId>org.hibernate</groupId>
|
2008-04-22 00:55:03 +00:00
|
|
|
<artifactId>hibernate-tutorials</artifactId>
|
2009-02-28 04:45:24 +00:00
|
|
|
<version>3.5.0-SNAPSHOT</version>
|
2008-04-22 00:55:03 +00:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2007-06-29 19:23:53 +00:00
|
|
|
</parent>
|
2008-04-22 00:55:03 +00:00
|
|
|
|
2007-06-29 19:23:53 +00:00
|
|
|
<groupId>org.hibernate</groupId>
|
2008-04-22 00:55:03 +00:00
|
|
|
<artifactId>hibernate-tutorial-web</artifactId>
|
2007-06-29 19:23:53 +00:00
|
|
|
<packaging>war</packaging>
|
2007-07-17 03:31:57 +00:00
|
|
|
|
2008-04-24 19:15:26 +00:00
|
|
|
<name>Hibernate Web Tutorial</name>
|
|
|
|
<description>A webapp-based tutorial project showcasing Hibernate usage</description>
|
2007-06-29 19:23:53 +00:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
<version>2.3</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2009-02-28 04:45:24 +00:00
|
|
|
</project>
|