Skip to content

Commit fe44702

Browse files
feat: 프로젝트 초기 세팅
0 parents  commit fe44702

11 files changed

Lines changed: 463 additions & 0 deletions

File tree

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/gradlew text eol=lf
2+
*.bat text eol=crlf
3+
*.jar binary

.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/

build.gradle

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
plugins {
2+
id 'java'
3+
id 'org.springframework.boot' version '3.5.6'
4+
id 'io.spring.dependency-management' version '1.1.7'
5+
}
6+
7+
group = 'apu'
8+
version = '0.0.1-SNAPSHOT'
9+
description = 'saerok admin'
10+
11+
java {
12+
toolchain {
13+
languageVersion = JavaLanguageVersion.of(21)
14+
}
15+
}
16+
17+
configurations {
18+
compileOnly {
19+
extendsFrom annotationProcessor
20+
}
21+
}
22+
23+
repositories {
24+
mavenCentral()
25+
}
26+
27+
dependencies {
28+
implementation 'org.springframework.boot:spring-boot-starter-security'
29+
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
30+
implementation 'org.springframework.boot:spring-boot-starter-web'
31+
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity6'
32+
compileOnly 'org.projectlombok:lombok'
33+
developmentOnly 'org.springframework.boot:spring-boot-devtools'
34+
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
35+
annotationProcessor 'org.projectlombok:lombok'
36+
testImplementation 'org.springframework.boot:spring-boot-starter-test'
37+
testImplementation 'org.springframework.security:spring-security-test'
38+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
39+
}
40+
41+
tasks.named('test') {
42+
useJUnitPlatform()
43+
}

gradle/wrapper/gradle-wrapper.jar

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.14.3-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
6+
zipStoreBase=GRADLE_USER_HOME
7+
zipStorePath=wrapper/dists

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.

0 commit comments

Comments
 (0)