Skip to content

Commit 5d51a68

Browse files
author
tomchccom
committed
refactor : 백엔드 파일 정리
1 parent 6b909d4 commit 5d51a68

75 files changed

Lines changed: 3915 additions & 0 deletions

File tree

Some content is hidden

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

.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: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
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/
38+
39+
40+
# Gradle locks
41+
*.lock
42+
*.bin
43+
*.properties
44+
*.json
45+
# Compiled binaries
46+
47+
# macOS
48+
.DS_Store
49+
**/.DS_Store
50+
51+
# environment variables
52+
.env
53+
54+
# pem / key files
55+
*.pem

build.gradle

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
plugins {
2+
id 'java'
3+
id 'org.springframework.boot' version '3.3.4'
4+
id 'io.spring.dependency-management' version '1.1.7'
5+
}
6+
7+
group = 'com.example'
8+
version = '0.0.1-SNAPSHOT'
9+
description = 'TOMO'
10+
11+
java {
12+
toolchain {
13+
languageVersion = JavaLanguageVersion.of(21)
14+
}
15+
}
16+
17+
repositories {
18+
mavenCentral()
19+
}
20+
21+
dependencies {
22+
implementation 'org.springframework.boot:spring-boot-starter'
23+
testImplementation 'org.springframework.boot:spring-boot-starter-test'
24+
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
25+
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
26+
implementation 'org.springframework.boot:spring-boot-starter-web'
27+
compileOnly 'org.projectlombok:lombok'
28+
developmentOnly 'org.springframework.boot:spring-boot-devtools'
29+
annotationProcessor 'org.projectlombok:lombok'
30+
implementation 'mysql:mysql-connector-java:8.0.33'
31+
32+
implementation 'com.google.firebase:firebase-admin:9.1.1'
33+
implementation 'com.google.auth:google-auth-library-oauth2-http:1.33.0'
34+
implementation 'org.springframework.boot:spring-boot-starter-security'
35+
36+
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.2.0'
37+
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
38+
implementation 'io.jsonwebtoken:jjwt-impl:0.11.5'
39+
implementation 'io.jsonwebtoken:jjwt-jackson:0.11.5' // JSON 파싱용
40+
implementation 'org.springframework.boot:spring-boot-starter-validation'
41+
implementation 'io.github.cdimascio:dotenv-java:3.2.0'
42+
43+
44+
45+
46+
}
47+
48+
tasks.named('test') {
49+
useJUnitPlatform()
50+
}

gradle/wrapper/gradle-wrapper.jar

42.7 KB
Binary file not shown.

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)