2018-05-14 03:10:20 -04: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 03:04:54 -04:00
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>
2018-05-14 03:10:20 -04:00
2018-07-12 03:04:54 -04:00
<groupId > com.baeldung</groupId>
<artifactId > spring-boot-ops</artifactId>
<version > 0.0.1-SNAPSHOT</version>
<packaging > war</packaging>
<name > spring-boot-ops</name>
<description > Demo project for Spring Boot</description>
2018-05-14 03:10:20 -04:00
2018-07-12 03:04:54 -04:00
<parent >
2018-05-31 19:13:18 -04:00
<artifactId > parent-boot-2</artifactId>
<groupId > com.baeldung</groupId>
<version > 0.0.1-SNAPSHOT</version>
<relativePath > ../parent-boot-2</relativePath>
</parent>
2018-05-14 03:10:20 -04:00
2018-07-12 03:04:54 -04:00
<dependencies >
<!-- add dependency management if you have a different parent pom <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring - boot - starter - data - jpa</artifactId>
<version > 1.5.10.RELEASE</version> </dependency> <dependency > <groupId > org.springframework.boot</groupId> <artifactId > spring-boot-dependencies</artifactId> <version > 1.5.10.RELEASE</version>
<type > pom</type> <scope > import</scope> </dependency> </dependencies> </dependencyManagement> -->
<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>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-test</artifactId>
<scope > test</scope>
</dependency>
<dependency >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-mail</artifactId>
</dependency>
<dependency >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-actuator</artifactId>
</dependency>
<dependency >
<groupId > com.h2database</groupId>
<artifactId > h2</artifactId>
<scope > runtime</scope>
</dependency>
<dependency >
<groupId > javax.persistence</groupId>
<artifactId > javax.persistence-api</artifactId>
<version > ${jpa.version}</version>
</dependency>
<dependency >
<groupId > com.google.guava</groupId>
<artifactId > guava</artifactId>
<version > ${guava.version}</version>
</dependency>
<dependency >
<groupId > org.subethamail</groupId>
<artifactId > subethasmtp</artifactId>
<version > ${subethasmtp.version}</version>
<scope > test</scope>
</dependency>
<dependency >
<groupId > org.webjars</groupId>
<artifactId > bootstrap</artifactId>
<version > ${bootstrap.version}</version>
</dependency>
<dependency >
<groupId > org.webjars</groupId>
<artifactId > jquery</artifactId>
<version > ${jquery.version}</version>
</dependency>
</dependencies>
<build >
<finalName > ${artifactId}</finalName>
<plugins >
<plugin >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-maven-plugin</artifactId>
</plugin>
<plugin >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-maven-plugin</artifactId>
<executions >
<execution >
<goals >
<goal > repackage</goal>
</goals>
<configuration >
<mainClass > com.baeldung.webjar.WebjarsdemoApplication</mainClass>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
2018-05-14 03:10:20 -04:00
2018-05-30 22:34:01 -04:00
<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 03:04:54 -04:00
<exclude > **/*IntTest.java</exclude>
2018-05-30 22:34:01 -04:00
</excludes>
<includes >
<include > **/AutoconfigurationTest.java</include>
</includes>
</configuration>
</execution>
</executions>
<configuration >
<systemPropertyVariables >
<test.mime > json</test.mime>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
2018-07-12 03:04:54 -04:00
<properties >
<!-- The main class to start by executing java - jar -->
<start-class > org.baeldung.boot.Application</start-class>
<jquery.version > 3.1.1</jquery.version>
<bootstrap.version > 3.3.7-1</bootstrap.version>
<jpa.version > 2.2</jpa.version>
<guava.version > 18.0</guava.version>
<subethasmtp.version > 3.1.7</subethasmtp.version>
</properties>
2018-05-14 03:10:20 -04:00
</project>