Skip to content

Commit 098c963

Browse files
committed
Add updated Spring Boot 3 version
1 parent 1c79589 commit 098c963

14 files changed

Lines changed: 491 additions & 3 deletions

File tree

.gitignore

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
HELP.md
12
.gradle
2-
/build/
3+
build/
34
!gradle/wrapper/gradle-wrapper.jar
5+
!**/src/main/**/build/
6+
!**/src/test/**/build/
47

58
### STS ###
69
.apt_generated
@@ -10,17 +13,25 @@
1013
.settings
1114
.springBeans
1215
.sts4-cache
16+
bin/
17+
!**/src/main/**/bin/
18+
!**/src/test/**/bin/
1319

1420
### IntelliJ IDEA ###
1521
.idea
1622
*.iws
1723
*.iml
1824
*.ipr
19-
/out/
25+
out/
26+
!**/src/main/**/out/
27+
!**/src/test/**/out/
2028

2129
### NetBeans ###
2230
/nbproject/private/
2331
/nbbuild/
2432
/dist/
2533
/nbdist/
26-
/.nb-gradle/
34+
/.nb-gradle/
35+
36+
### VS Code ###
37+
.vscode/

build.gradle

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
plugins {
2+
id 'java'
3+
id 'org.springframework.boot' version '3.2.1'
4+
id 'io.spring.dependency-management' version '1.1.4'
5+
}
6+
7+
group = 'com.graphqljava.tutorial'
8+
version = '0.0.1-SNAPSHOT'
9+
10+
java {
11+
sourceCompatibility = '17'
12+
}
13+
14+
repositories {
15+
mavenCentral()
16+
}
17+
18+
dependencies {
19+
implementation 'org.springframework.boot:spring-boot-starter-graphql'
20+
implementation 'org.springframework.boot:spring-boot-starter-web'
21+
testImplementation 'org.springframework.boot:spring-boot-starter-test'
22+
testImplementation 'org.springframework:spring-webflux'
23+
testImplementation 'org.springframework.graphql:spring-graphql-test'
24+
}
25+
26+
tasks.named('test') {
27+
useJUnitPlatform()
28+
}

gradle/wrapper/gradle-wrapper.jar

42.4 KB
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
6+
zipStoreBase=GRADLE_USER_HOME
7+
zipStorePath=wrapper/dists

gradlew

Lines changed: 249 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)