Skip to content

Commit 426d1e7

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents ec681b5 + 57ff037 commit 426d1e7

37 files changed

+1294
-0
lines changed

build-all.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ build_gradle_module "spring-boot/startup"
5656
build_gradle_module "spring-boot/static"
5757
build_gradle_module "spring-boot/validation"
5858
build_gradle_module "spring-boot/profiles"
59+
build_gradle_module "spring-boot/password-encoding"
5960
build_gradle_module "spring-cloud/feign-with-spring-data-rest"
6061
build_gradle_module "spring-cloud/sleuth-downstream-service"
6162
build_gradle_module "spring-cloud/sleuth-upstream-service"
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
HELP.md
2+
.gradle
3+
build/
4+
!gradle/wrapper/gradle-wrapper.jar
5+
!**/src/main/**
6+
!**/src/test/**
7+
8+
### STS ###
9+
.apt_generated
10+
.classpath
11+
.factorypath
12+
.project
13+
.settings
14+
.springBeans
15+
.sts4-cache
16+
17+
### IntelliJ IDEA ###
18+
.idea
19+
*.iws
20+
*.iml
21+
*.ipr
22+
out/
23+
24+
### NetBeans ###
25+
/nbproject/private/
26+
/nbbuild/
27+
/dist/
28+
/nbdist/
29+
/.nb-gradle/
30+
31+
### VS Code ###
32+
.vscode/
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
plugins {
2+
id 'org.springframework.boot' version '2.2.2.RELEASE'
3+
id 'io.spring.dependency-management' version '1.0.8.RELEASE'
4+
id 'java'
5+
}
6+
7+
group = 'io.reflectoring'
8+
version = '0.0.1-SNAPSHOT'
9+
description = 'password-encoding-spring-boot'
10+
sourceCompatibility = '11'
11+
12+
13+
repositories {
14+
mavenCentral()
15+
}
16+
17+
configurations {
18+
compileOnly {
19+
extendsFrom annotationProcessor
20+
}
21+
}
22+
23+
dependencies {
24+
implementation 'org.springframework.boot:spring-boot-starter-security:2.2.4.RELEASE'
25+
implementation 'org.springframework.boot:spring-boot-starter-web:2.2.4.RELEASE'
26+
implementation 'org.springframework.boot:spring-boot-starter-data-jpa:2.2.4.RELEASE'
27+
implementation 'com.h2database:h2:1.4.200'
28+
implementation 'org.flywaydb:flyway-core:6.0.8'
29+
implementation 'org.bouncycastle:bcprov-jdk15on:1.64'
30+
implementation 'org.projectlombok:lombok:1.18.12'
31+
annotationProcessor 'org.projectlombok:lombok'
32+
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
33+
implementation 'com.google.guava:guava:28.2-jre'
34+
testImplementation 'org.springframework.boot:spring-boot-starter-test:2.2.4.RELEASE'
35+
testImplementation 'org.springframework.security:spring-security-test:5.2.1.RELEASE'
36+
}
37+
38+
39+
test {
40+
useJUnitPlatform()
41+
}
57.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-6.0.1-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

spring-boot/password-encoding/gradlew

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

spring-boot/password-encoding/gradlew.bat

Lines changed: 100 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
package io.reflectoring.passwordencoding;
2+
3+
import org.springframework.boot.SpringApplication;
4+
import org.springframework.boot.autoconfigure.SpringBootApplication;
5+
6+
@SpringBootApplication
7+
public class PasswordEncodingSpringBootApplication {
8+
9+
public static void main(String[] args) {
10+
SpringApplication.run(PasswordEncodingSpringBootApplication.class, args);
11+
}
12+
}

0 commit comments

Comments
 (0)