Files
java-tutorials/spring-boot-bootstrap/pom.xml
T

121 lines
4.7 KiB
XML
Raw Normal View History

2017-06-12 22:12:54 +02: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"
2018-07-12 12:34:54 +05:30
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2018-04-26 18:07:47 +05:30
<modelVersion>4.0.0</modelVersion>
<groupId>org.baeldung</groupId>
<artifactId>spring-boot-bootstrap</artifactId>
<packaging>jar</packaging>
<name>spring-boot-bootstrap</name>
<description>Demo project for Spring Boot</description>
2017-06-12 22:12:54 +02:00
2018-04-26 18:07:47 +05:30
<parent>
2018-05-08 22:04:21 +03:00
<artifactId>parent-boot-2</artifactId>
2018-04-26 18:07:47 +05:30
<groupId>com.baeldung</groupId>
<version>0.0.1-SNAPSHOT</version>
2018-05-08 22:04:21 +03:00
<relativePath>../parent-boot-2</relativePath>
2018-04-26 18:07:47 +05:30
</parent>
2017-06-12 22:12:54 +02:00
2018-04-26 18:07:47 +05:30
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
2018-07-12 12:34:54 +05:30
<version>${rest-assured.version}</version>
2018-04-26 18:07:47 +05:30
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
2018-07-12 12:34:54 +05:30
<version>${servlet.version}</version>
2018-04-26 18:07:47 +05:30
</dependency>
</dependencies>
2017-06-12 22:12:54 +02:00
2018-04-26 18:07:47 +05:30
<profiles>
<profile>
<id>autoconfiguration</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<excludes>
<exclude>**/*LiveTest.java</exclude>
<exclude>**/*IntegrationTest.java</exclude>
2018-07-12 12:34:54 +05:30
<exclude>**/*IntTest.java</exclude>
2018-04-26 18:07:47 +05:30
</excludes>
<includes>
<include>**/AutoconfigurationTest.java</include>
</includes>
</configuration>
</execution>
</executions>
<configuration>
<systemPropertyVariables>
<test.mime>json</test.mime>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
</profile>
2018-06-08 22:47:00 +02:00
<profile>
<id>thin-jar</id>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot.experimental</groupId>
<artifactId>spring-boot-thin-maven-plugin</artifactId>
<version>${thin.version}</version>
<executions>
<execution>
<!-- Download the dependencies at build time -->
<id>resolve</id>
<goals>
<goal>resolve</goal>
</goals>
<inherited>false</inherited>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
2018-04-26 18:07:47 +05:30
</profiles>
2017-10-29 16:05:26 +01:00
2018-04-26 18:07:47 +05:30
<properties>
2018-07-12 12:34:54 +05:30
<servlet.version>4.0.0</servlet.version>
2018-04-26 18:07:47 +05:30
</properties>
2017-06-12 22:12:54 +02:00
</project>