Skip to content

Commit

Permalink
Main 서버 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
qogustj committed May 21, 2024
1 parent 8c48c84 commit ff2a89e
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 93 deletions.
45 changes: 0 additions & 45 deletions .github/workflows/main-service-ci.yml

This file was deleted.

46 changes: 0 additions & 46 deletions .github/workflows/socket-service-ci.yml

This file was deleted.

35 changes: 33 additions & 2 deletions Main/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,40 @@ repositories {
}

dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
//implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-web-services'
compileOnly 'org.projectlombok:lombok'
runtimeOnly 'com.mysql:mysql-connector-j'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'

//jwt
implementation group: 'io.jsonwebtoken', name: 'jjwt-api', version: '0.11.5'
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-impl', version: '0.11.5'
runtimeOnly group: 'io.jsonwebtoken', name: 'jjwt-jackson', version: '0.11.5'

//security
implementation 'org.springframework.boot:spring-boot-starter-security'

// redis
implementation 'org.springframework.boot:spring-boot-starter-data-redis:2.3.1.RELEASE'

// S3
implementation 'org.springframework.cloud:spring-cloud-starter-aws:2.2.6.RELEASE'

//fcm
implementation 'com.google.firebase:firebase-admin:8.1.0'
implementation 'org.json:json:20210307'

// Mail
implementation 'org.springframework.boot:spring-boot-starter-mail'

//school email - univcert.com
implementation 'com.github.in-seo:univcert:master-SNAPSHOT'
//mongoDB
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb'
}

tasks.named('test') {
Expand Down

0 comments on commit ff2a89e

Please sign in to comment.