java-tutorials/spring-boot/pom.xml

73 lines
2.4 KiB
XML
Raw Normal View History

2015-07-23 09:54:23 -04:00
<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>
2016-03-06 04:49:59 -05:00
<groupId>com.baeldung</groupId>
2015-07-23 09:54:23 -04:00
<artifactId>spring-boot</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<name>Spring Boot Actuator</name>
<description>This is simple boot application for Spring boot actuator test</description>
2015-07-23 09:54:23 -04:00
<!-- Inherit defaults from Spring Boot -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
2016-04-25 15:46:36 -04:00
<version>1.3.3.RELEASE</version>
2015-07-23 09:54:23 -04:00
</parent>
2015-07-23 09:54:23 -04:00
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
2015-07-23 09:54:23 -04:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
2015-07-23 09:54:23 -04:00
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
2015-07-23 09:54:23 -04:00
<dependency>
<groupId>io.dropwizard.metrics</groupId>
<artifactId>metrics-core</artifactId>
</dependency>
</dependencies>
2015-07-23 09:54:23 -04:00
<build>
<finalName>spring-boot</finalName>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
2015-07-23 09:54:23 -04:00
<plugins>
2015-05-30 13:33:23 -04:00
2015-07-23 09:54:23 -04:00
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
2015-05-30 13:33:23 -04:00
2015-07-23 09:54:23 -04:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
2015-05-30 13:33:23 -04:00
2015-07-23 09:54:23 -04:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
</plugin>
2015-05-30 13:33:23 -04:00
2015-07-23 09:54:23 -04:00
</plugins>
2015-05-30 13:33:23 -04:00
2015-07-23 09:54:23 -04:00
</build>
</project>