spring-boot/spring-boot-ops/pom.xml

84 lines
2.5 KiB
XML
Raw Normal View History

2013-04-24 17:02:07 +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">
2013-04-24 17:02:07 +08:00
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
2013-05-08 17:07:22 +08:00
<version>0.5.0.BUILD-SNAPSHOT</version>
2013-04-24 17:02:07 +08:00
</parent>
<artifactId>spring-boot-ops</artifactId>
2013-04-24 17:02:07 +08:00
<packaging>jar</packaging>
2013-07-06 01:26:50 +08:00
<properties>
<main.basedir>${basedir}/..</main.basedir>
</properties>
2013-04-24 17:02:07 +08:00
<dependencies>
2013-07-06 01:26:50 +08:00
<!-- Compile -->
2013-04-24 17:02:07 +08:00
<dependency>
2013-07-06 01:26:50 +08:00
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-config</artifactId>
2013-04-24 17:02:07 +08:00
<version>${project.version}</version>
</dependency>
<dependency>
2013-07-06 01:26:50 +08:00
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
2013-04-24 17:02:07 +08:00
</dependency>
<dependency>
2013-07-06 01:26:50 +08:00
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
2013-04-24 17:02:07 +08:00
</dependency>
<dependency>
<groupId>org.springframework</groupId>
2013-07-06 01:26:50 +08:00
<artifactId>spring-core</artifactId>
2013-04-24 17:02:07 +08:00
</dependency>
<dependency>
<groupId>org.springframework</groupId>
2013-07-06 01:26:50 +08:00
<artifactId>spring-context</artifactId>
</dependency>
2013-07-06 01:26:50 +08:00
<!-- Optional -->
2013-04-24 17:02:07 +08:00
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
2013-07-06 01:26:50 +08:00
<optional>true</optional>
2013-04-24 17:02:07 +08:00
</dependency>
<dependency>
2013-07-06 01:26:50 +08:00
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
2013-04-24 17:02:07 +08:00
</dependency>
<dependency>
2013-07-06 01:26:50 +08:00
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<optional>true</optional>
2013-04-24 17:02:07 +08:00
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
2013-04-24 17:02:07 +08:00
<optional>true</optional>
</dependency>
2013-07-01 22:25:53 +08:00
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
2013-07-01 22:25:53 +08:00
<optional>true</optional>
</dependency>
2013-04-24 17:02:07 +08:00
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
<optional>true</optional>
</dependency>
2013-07-06 01:26:50 +08:00
<!-- Test -->
2013-07-08 07:23:32 +08:00
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>spring-boot-strap</artifactId>
2013-07-08 07:23:32 +08:00
<version>${project.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-logging-juli</artifactId>
<scope>test</scope>
</dependency>
2013-04-24 17:02:07 +08:00
</dependencies>
</project>