Skip to content

Commit 196d333

Browse files
committedNov 24, 2023
update spring boot version
1 parent f1297fa commit 196d333

File tree

4 files changed

+823
-743
lines changed

4 files changed

+823
-743
lines changed
 

‎.gitignore

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
HELP.md
2+
.gradle
3+
build/
4+
!gradle/wrapper/gradle-wrapper.jar
5+
!**/src/main/**/build/
6+
!**/src/test/**/build/
7+
8+
### STS ###
9+
.apt_generated
10+
.classpath
11+
.factorypath
12+
.project
13+
.settings
14+
.springBeans
15+
.sts4-cache
16+
bin/
17+
!**/src/main/**/bin/
18+
!**/src/test/**/bin/
19+
20+
### IntelliJ IDEA ###
21+
.idea
22+
*.iws
23+
*.iml
24+
*.ipr
25+
out/
26+
!**/src/main/**/out/
27+
!**/src/test/**/out/
28+
29+
### NetBeans ###
30+
/nbproject/private/
31+
/nbbuild/
32+
/dist/
33+
/nbdist/
34+
/.nb-gradle/
35+
36+
### VS Code ###
37+
.vscode/

‎backend-api/build.gradle

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
plugins {
22
id 'java'
3-
id 'org.springframework.boot' version '3.1.5'
4-
id 'io.spring.dependency-management' version '1.1.3'
3+
id 'org.springframework.boot' version '3.2.0'
4+
id 'io.spring.dependency-management' version '1.1.4'
55
id 'idea'
66
}
77

88
group = 'com.ashu.practice'
9-
version = '1.0.0-SNAPSHOT'
9+
version = '1.1.0-SNAPSHOT'
1010

1111
java {
1212
sourceCompatibility = '21'
@@ -30,6 +30,7 @@ repositories {
3030
dependencies {
3131
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
3232
implementation 'org.springframework.boot:spring-boot-starter-security'
33+
implementation 'org.springframework.boot:spring-boot-starter-actuator'
3334
implementation 'org.springframework.boot:spring-boot-starter-validation'
3435
implementation 'org.springframework.boot:spring-boot-starter-web'
3536
implementation "io.jsonwebtoken:jjwt-api:$jwtVersion"

‎web-ui/package-lock.json

+781-739
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎web-ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"react-dom": "^18.2.0",
1212
"react-router-bootstrap": "^0.26.2",
1313
"react-router-dom": "^6.17.0",
14-
"react-scripts": "5.0.1",
14+
"react-scripts": "^5.0.1",
1515
"sass": "^1.69.4",
1616
"web-vitals": "^2.1.4",
1717
"yup": "^1.3.2"

0 commit comments

Comments
 (0)
Please sign in to comment.