FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
spring-boot-microservices/pom.xml at master · MiniSpringBootTutorial/spring-boot-microservices · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
MiniSpringBootTutorial
/
spring-boot-microservices
Public
forked from
linux-china/spring-boot-microservices
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
spring-boot-microservices
/
pom.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
108 lines (105 loc) · 4.14 KB
Breadcrumbs
spring-boot-microservices
/
pom.xml
Copy path
File metadata and controls
108 lines (105 loc) · 4.14 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<?
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
"
>
<
modelVersion
>4.0.0</
modelVersion
>
<
groupId
>org.mvnsearch</
groupId
>
<
artifactId
>spring-boot-microservices</
artifactId
>
<
packaging
>pom</
packaging
>
<
version
>1.0.0-SNAPSHOT</
version
>
<
modules
>
<
module
>boot-admin-server</
module
>
<
module
>cloud-config-server</
module
>
<
module
>cloud-registry-server</
module
>
<
module
>cloud-data-flow-server</
module
>
<
module
>microapp-1</
module
>
<
module
>microapp-2</
module
>
<
module
>zuul-proxy</
module
>
<
module
>sidecar-1</
module
>
<
module
>task-demo</
module
>
</
modules
>
<
properties
>
<
project
.build.sourceEncoding>UTF-8</
project
.build.sourceEncoding>
<
java
.version>1.8</
java
.version>
<
spring
.version>4.3.7.RELEASE</
spring
.version>
<
spring-boot
.version>1.5.2.RELEASE</
spring-boot
.version>
<
spring-cloud
.version>Camden.SR6</
spring-cloud
.version>
<
platform-bom
.version>Brussels-SR1</
platform-bom
.version>
</
properties
>
<
build
>
<
plugins
>
<
plugin
>
<
artifactId
>maven-compiler-plugin</
artifactId
>
<
version
>3.6.1</
version
>
<
configuration
>
<
source
>1.8</
source
>
<
target
>1.8</
target
>
</
configuration
>
</
plugin
>
<
plugin
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-maven-plugin</
artifactId
>
<
version
>
${spring-boot.version}
</
version
>
<
configuration
>
<
executable
>false</
executable
>
</
configuration
>
<
executions
>
<
execution
>
<
goals
>
<
goal
>repackage</
goal
>
<
goal
>build-info</
goal
>
</
goals
>
</
execution
>
</
executions
>
</
plugin
>
<
plugin
>
<
groupId
>pl.project13.maven</
groupId
>
<
artifactId
>git-commit-id-plugin</
artifactId
>
<
version
>2.2.1</
version
>
<
executions
>
<
execution
>
<
goals
>
<
goal
>revision</
goal
>
</
goals
>
</
execution
>
</
executions
>
<
configuration
>
<
verbose
>true</
verbose
>
<
dateFormat
>yyyy-MM-dd'T'HH:mm:ssZ</
dateFormat
>
<
generateGitPropertiesFile
>true</
generateGitPropertiesFile
>
</
configuration
>
</
plugin
>
</
plugins
>
</
build
>
<
dependencyManagement
>
<
dependencies
>
<
dependency
>
<
groupId
>org.springframework</
groupId
>
<
artifactId
>spring-framework-bom</
artifactId
>
<
version
>
${spring.version}
</
version
>
<
type
>pom</
type
>
<
scope
>import</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-dependencies</
artifactId
>
<
version
>
${spring-boot.version}
</
version
>
<
type
>pom</
type
>
<
scope
>import</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>org.springframework.cloud</
groupId
>
<
artifactId
>spring-cloud-dependencies</
artifactId
>
<
version
>
${spring-cloud.version}
</
version
>
<
type
>pom</
type
>
<
scope
>import</
scope
>
</
dependency
>
<
dependency
>
<
groupId
>io.spring.platform</
groupId
>
<
artifactId
>platform-bom</
artifactId
>
<
version
>
${platform-bom.version}
</
version
>
<
type
>pom</
type
>
<
scope
>import</
scope
>
</
dependency
>
</
dependencies
>
</
dependencyManagement
>
</
project
>
Back
|
FazBrowse Home
|
New Git URL