forked from paulc4/mvc-exceptions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
88 lines (78 loc) · 2.84 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?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/maven-v4_0_0.xsd">
<groupId>io.spring.demo</groupId>
<version>2.1.0-RELEASE</version>
<modelVersion>4.0.0</modelVersion>
<artifactId>mvc-exceptions</artifactId>
<name>Demo application for Spring Exception Handling Blog</name>
<!-- Build as a JAR running Tomcat embedded -->
<packaging>jar</packaging>
<!-- Uncomment to set Java or Spring version -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<start-class>demo.main.Main</start-class>
<!-- <java.version>1.8</java.version> -->
<!-- <spring.version>4.3.17.RELEASE</spring.version> -->
</properties>
<!-- Must inherit from the Spring Boot parent POM. -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.1.RELEASE</version>
</parent>
<!-- Spring boot starters automatically configure common setups. It also
detects known dependencies like Thymeleaf. -->
<dependencies>
<!-- Spring Boot itself. Version number inherited from parent POM. -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- Tell Spring Boot to setup Thymeleaf for page rendering. -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<!-- RESTful API for monitoring the app. -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- Auto-restart application if its source changes -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Spring Boot plugin enables: spring-boot:run -->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<!--
// Allow deployment to Cloud Foundry. To use, run:
// mvn install
// mvn -Dcf.username=xxxm -Dcf.password=xxx -Dcf.org=xxx cf:push
-->
<plugin>
<groupId>org.cloudfoundry</groupId>
<artifactId>cf-maven-plugin</artifactId>
<version>1.1.3</version>
<configuration>
<server>pivotal-cloud-foundry</server>
<target>https://api.run.pivotal.io</target>
<space>development</space>
<appname>mvc-exceptions</appname>
<!-- Need to make url unique - change xxx -->
<url>mvc-exceptions-xxx.cfapps.io</url>
<memory>512</memory>
<instances>1</instances>
</configuration>
</plugin>
</plugins>
</build>
</project>