Skip to content

Commit c93f346

Browse files
committed
Add ACL Sample
1 parent 9c13403 commit c93f346

19 files changed

+862
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
plugins {
2+
id 'java'
3+
id 'org.springframework.boot' version '3.4.4'
4+
id 'io.spring.dependency-management' version '1.1.7'
5+
}
6+
7+
group = 'example'
8+
version = '0.0.1-SNAPSHOT'
9+
10+
java {
11+
toolchain {
12+
languageVersion = JavaLanguageVersion.of(17)
13+
}
14+
}
15+
16+
repositories {
17+
maven { url "https://repo.spring.io/snapshot" }
18+
maven { url "https://repo.spring.io/milestone" }
19+
mavenCentral()
20+
}
21+
22+
dependencies {
23+
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
24+
implementation 'org.springframework.boot:spring-boot-starter-security'
25+
implementation 'org.springframework.boot:spring-boot-starter-web'
26+
implementation 'org.springframework.security:spring-security-acl'
27+
implementation 'org.hsqldb:hsqldb'
28+
29+
testImplementation 'org.springframework.boot:spring-boot-starter-test'
30+
testImplementation 'org.springframework.security:spring-security-test'
31+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
32+
}
33+
34+
tasks.named('test') {
35+
useJUnitPlatform()
36+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
version=6.1.1
2+
spring-security.version=6.5.0-SNAPSHOT
3+
org.gradle.jvmargs=-Xmx6g -XX:+HeapDumpOnOutOfMemoryError
4+
org.gradle.caching=true
42.7 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.13-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
6+
zipStoreBase=GRADLE_USER_HOME
7+
zipStorePath=wrapper/dists

servlet/spring-boot/java/acl/gradlew

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

servlet/spring-boot/java/acl/gradlew.bat

Lines changed: 94 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)