java-tutorials/spring-cloud/spring-cloud-rest/spring-cloud-rest-reviews-api/pom.xml

112 lines
3.2 KiB
XML
Raw Normal View History

2017-01-18 17:09:47 -05: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>
<groupId>org.baeldung</groupId>
2017-01-29 10:19:25 -05:00
<artifactId>spring-cloud-rest-reviews-api</artifactId>
2017-01-18 17:09:47 -05:00
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
2017-01-29 10:19:25 -05:00
<name>spring-cloud-rest-reviews-api</name>
<description>Simple reviews API</description>
2017-01-18 17:09:47 -05:00
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.3.RELEASE</version>
2017-01-22 09:23:07 -05:00
<relativePath /> <!-- lookup parent from repository -->
2017-01-18 17:09:47 -05:00
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
2017-01-21 05:02:06 -05:00
<rest-assured.version>3.0.1</rest-assured.version>
2017-01-18 17:09:47 -05:00
</properties>
<dependencies>
2017-01-25 09:36:18 -05:00
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
2017-01-18 17:09:47 -05:00
<dependency>
2017-01-22 09:23:07 -05:00
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka</artifactId>
2017-01-18 17:09:47 -05:00
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
2017-01-22 09:23:07 -05:00
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
2017-01-18 17:09:47 -05:00
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
2017-01-22 09:23:07 -05:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-rest</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
2017-01-18 17:09:47 -05:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
2017-01-21 05:02:06 -05:00
<dependency>
2017-01-22 09:23:07 -05:00
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<version>${rest-assured.version}</version>
2017-01-21 05:02:06 -05:00
</dependency>
2017-01-22 09:23:07 -05:00
2017-01-18 17:09:47 -05:00
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>Camden.SR4</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
2017-01-22 09:23:07 -05:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/*IntegrationTest.java</exclude>
<exclude>**/*LiveTest.java</exclude>
</excludes>
</configuration>
</plugin>
2017-01-18 17:09:47 -05:00
</plugins>
</build>
</project>