spring-boot/spring-boot-autoconfigure/pom.xml

149 lines
4.3 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-parent</artifactId>
2013-08-30 17:43:00 +08:00
<version>0.5.0.BUILD-SNAPSHOT</version>
<relativePath>../spring-boot-parent</relativePath>
2013-04-24 17:02:07 +08:00
</parent>
<artifactId>spring-boot-autoconfigure</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</artifactId>
2013-07-06 01:26:50 +08:00
<version>${project.version}</version>
2013-04-24 17:02:07 +08:00
</dependency>
<!-- Optional -->
<dependency>
2013-07-06 01:26:50 +08:00
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
2013-04-24 17:02:07 +08:00
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
<optional>true</optional>
</dependency>
2013-05-17 18:54:52 +08:00
<dependency>
<groupId>org.apache.tomcat</groupId>
<artifactId>tomcat-jdbc</artifactId>
<optional>true</optional>
</dependency>
<dependency>
2013-07-06 01:26:50 +08:00
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-webapp</artifactId>
2013-05-17 18:54:52 +08:00
<optional>true</optional>
</dependency>
2013-04-24 17:02:07 +08:00
<dependency>
2013-07-06 01:26:50 +08:00
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
2013-04-24 17:02:07 +08:00
<optional>true</optional>
</dependency>
<dependency>
2013-07-06 01:26:50 +08:00
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.0-api</artifactId>
2013-04-24 17:02:07 +08:00
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-websocket</artifactId>
2013-04-24 17:02:07 +08:00
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.batch</groupId>
<artifactId>spring-batch-core</artifactId>
<optional>true</optional>
</dependency>
<dependency>
2013-07-06 01:26:50 +08:00
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
2013-04-24 17:02:07 +08:00
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-acl</artifactId>
<optional>true</optional>
</dependency>
2013-04-24 17:02:07 +08:00
<dependency>
2013-07-06 01:26:50 +08:00
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf</artifactId>
2013-04-24 17:02:07 +08:00
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.thymeleaf</groupId>
<artifactId>thymeleaf-spring3</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>nz.net.ultraq.thymeleaf</groupId>
<artifactId>thymeleaf-layout-dialect</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-springsecurity3</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectreactor</groupId>
<artifactId>reactor-spring</artifactId>
<optional>true</optional>
</dependency>
2013-07-06 01:26:50 +08:00
<!-- Test -->
<dependency>
2013-07-06 01:26:50 +08:00
<groupId>${project.groupId}</groupId>
2013-07-27 05:10:38 +08:00
<artifactId>spring-boot</artifactId>
2013-07-06 01:26:50 +08:00
<version>${project.version}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<scope>test</scope>
</dependency>
2013-04-24 17:02:07 +08:00
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<scope>test</scope>
</dependency>
2013-04-24 17:02:07 +08:00
</dependencies>
</project>