-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.yml
30 lines (25 loc) · 1.21 KB
/
pom.yml
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
modelVersion: 4.0.0
groupId: io.mikael
artifactId: boot-countries
name: boot-countries
version: 1.0-SNAPSHOT
packaging: jar
parent: {artifactId: spring-boot-starter-parent, groupId: org.springframework.boot, version: 2.2.5.RELEASE}
properties: {feign.version: 10.8, java.version: 11}
dependencies:
- artifactId: spring-boot-starter-web
groupId: org.springframework.boot
exclusions:
- {artifactId: spring-boot-starter-tomcat, groupId: org.springframework.boot}
- {artifactId: spring-boot-starter-undertow, groupId: org.springframework.boot}
- {artifactId: spring-boot-starter-actuator, groupId: org.springframework.boot}
- {groupId: org.jboss.xnio, artifactId: xnio-nio, version: 3.7.7.Final}
- {groupId: org.jboss.threads, artifactId: jboss-threads, version: 3.0.1.Final}
- {scope: test, artifactId: httpclient, groupId: org.apache.httpcomponents}
- {scope: test, artifactId: feign-jackson, groupId: io.github.openfeign, version: '${feign.version}'}
- {scope: test, artifactId: spring-boot-starter-test, groupId: org.springframework.boot}
build:
plugins:
- groupId: org.springframework.boot
artifactId: spring-boot-maven-plugin
configuration: {finalName: countries, classifier: runnable}