Skip to content

Commit 748e413

Browse files
committed
Thank You for Choosing to Learn from in28Minutes
1 parent 8b1efb5 commit 748e413

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+583
-0
lines changed

71-spring-security/.DS_Store

6 KB
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
Binary file not shown.

72-oauth/.gitignore

Lines changed: 37 additions & 0 deletions
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/

72-oauth/build.gradle

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
plugins {
2+
id 'java'
3+
id 'org.springframework.boot' version '3.0.0'
4+
id 'io.spring.dependency-management' version '1.1.0'
5+
}
6+
7+
group = 'com.in28minutes'
8+
version = '0.0.1-SNAPSHOT'
9+
sourceCompatibility = '17'
10+
11+
repositories {
12+
mavenCentral()
13+
maven { url 'https://repo.spring.io/milestone' }
14+
}
15+
16+
dependencies {
17+
implementation 'org.springframework.boot:spring-boot-starter-oauth2-client'
18+
implementation 'org.springframework.boot:spring-boot-starter-web'
19+
developmentOnly 'org.springframework.boot:spring-boot-devtools'
20+
testImplementation 'org.springframework.boot:spring-boot-starter-test'
21+
}
22+
23+
tasks.named('test') {
24+
useJUnitPlatform()
25+
}

72-oauth/final.md

Lines changed: 109 additions & 0 deletions

72-oauth/final.zip

65 KB
Binary file not shown.

72-oauth/gradle/.DS_Store

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

0 commit comments

Comments
 (0)