Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
MicroServicesDemo
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Divisha Agarwal
MicroServicesDemo
Commits
b2ca7c60
Commit
b2ca7c60
authored
Jun 16, 2020
by
Kali Padhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue Fix
parent
3e8b6767
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
9 deletions
+13
-9
build.gradle
gatewayServiceUsingJava/gatewayServiceUsingJava/build.gradle
+13
-9
No files found.
gatewayServiceUsingJava/gatewayServiceUsingJava/build.gradle
View file @
b2ca7c60
plugins
{
id
'org.springframework.boot'
version
'2.
3.1
.RELEASE'
id
'org.springframework.boot'
version
'2.
2.6
.RELEASE'
id
'io.spring.dependency-management'
version
'1.0.9.RELEASE'
id
'java'
}
...
...
@@ -12,17 +12,21 @@ repositories {
mavenCentral
()
}
dependencies
{
//implementation 'org.springframework.boot:spring-boot-starter-web'
compile
group:
'org.springframework.boot'
,
name:
'spring-boot-starter'
,
version:
'2.2.8.RELEASE'
compile
group:
'org.springframework.boot'
,
name:
'spring-boot-starter-validation'
,
version:
'2.2.8.RELEASE'
runtime
group:
'org.springframework.cloud'
,
name:
'spring-cloud-dependencies'
,
version:
'Greenwich.SR2'
,
ext:
'pom'
ext
{
set
(
'springCloudVersion'
,
"Hoxton.SR3"
)
}
dependencies
{
compileOnly
'org.projectlombok:lombok'
compile
group:
'org.springframework.cloud'
,
name:
'spring-cloud-starter-gateway'
,
version:
'2.1.5.RELEASE
'
implementation
'org.springframework.cloud:spring-cloud-starter-gateway
'
annotationProcessor
'org.projectlombok:lombok'
testImplementation
(
'org.springframework.boot:spring-boot-starter-test'
)
{
exclude
group:
'org.junit.vintage'
,
module:
'junit-vintage-engine'
}
dependencyManagement
{
imports
{
mavenBom
"org.springframework.cloud:spring-cloud-dependencies:${springCloudVersion}"
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment