2013-05-01 18:17:27 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
2013-07-26 18:50:02 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
2013-08-05 19:43:24 +08:00
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2013-08-30 17:43:00 +08:00
|
|
|
<version>0.5.0.BUILD-SNAPSHOT</version>
|
2013-08-06 14:22:37 +08:00
|
|
|
<relativePath>../../spring-boot-starters/spring-boot-starter-parent</relativePath>
|
2013-05-01 18:17:27 +08:00
|
|
|
</parent>
|
2013-07-26 18:50:02 +08:00
|
|
|
<artifactId>spring-boot-sample-data-jpa</artifactId>
|
2013-07-16 21:38:24 +08:00
|
|
|
<packaging>jar</packaging>
|
2013-07-06 01:26:50 +08:00
|
|
|
<properties>
|
|
|
|
<main.basedir>${basedir}/../..</main.basedir>
|
|
|
|
</properties>
|
2013-05-01 18:17:27 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
2013-07-31 07:20:36 +08:00
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
2013-05-01 18:17:27 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2013-07-06 01:26:50 +08:00
|
|
|
<groupId>${project.groupId}</groupId>
|
2013-07-31 07:20:36 +08:00
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2013-05-01 18:17:27 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hsqldb</groupId>
|
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2013-07-06 01:26:50 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
2013-07-26 18:50:02 +08:00
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2013-07-06 01:26:50 +08:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2013-05-01 18:17:27 +08:00
|
|
|
</project>
|