Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 17 additions & 33 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,50 +11,34 @@ dependencyManagement {
}
}

allprojects {
group = "${projectGroup}"
version = "${applicationVersion}"
sourceCompatibility = project.javaVersion
group = "${projectGroup}"
version = "${applicationVersion}"

repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
java {
toolchain {
languageVersion = JavaLanguageVersion.of(project.javaVersion)
}
}

repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}

configurations {
compileOnly {
extendsFrom annotationProcessor
}
}

subprojects {
apply plugin: 'java-library'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'

bootJar.enabled = false
jar.enabled = true

dependencies {
// ============== Utils & Libraries ==============
// Lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
}

tasks.named('test') {
useJUnitPlatform()
}
}

dependencies {
// ============== Spring Boot Starters ==============
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
implementation 'org.springframework.boot:spring-boot-starter-actuator'

// ============== Database & Persistence ==============
// MySQL
Expand All @@ -66,8 +50,9 @@ dependencies {
annotationProcessor 'jakarta.annotation:jakarta.annotation-api'
annotationProcessor 'jakarta.persistence:jakarta.persistence-api'

// QueryDSL BaseEntity
annotationProcessor project(':wss-common')
// SQL Logging (P6Spy)
implementation "p6spy:p6spy:${p6spyVersion}"
implementation "com.github.gavlyukovskiy:datasource-decorator-spring-boot-autoconfigure:${datasourceDecoratorVersion}"

// ============== Security & JWT ==============
// JWT
Expand All @@ -86,6 +71,9 @@ dependencies {
// JSON
implementation "com.googlecode.json-simple:json-simple:${jsonSimpleVersion}"

// 구조화 로깅
runtimeOnly "net.logstash.logback:logstash-logback-encoder:${logstashLogbackEncoderVersion}"

// ============== External Services ==============
// FCM (Firebase Cloud Messaging)
implementation "com.google.firebase:firebase-admin:${firebaseAdminVersion}"
Expand All @@ -97,10 +85,6 @@ dependencies {
implementation "org.webjars:swagger-ui:${swaggerUiVersion}"
implementation 'org.webjars:webjars-locator-core'

// ============== Project Modules ==============
implementation project(':wss-service-support')
implementation project(':wss-common')

// ============== Test ==============
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'org.springframework.security:spring-security-test'
Expand Down
3 changes: 3 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,6 @@ jsonSimpleVersion=1.1.1
firebaseAdminVersion=9.4.3
restdocsApiSpecVersion=0.19.4
swaggerUiVersion=5.13.0
p6spyVersion=3.9.1
datasourceDecoratorVersion=1.9.2
logstashLogbackEncoderVersion=7.4
3 changes: 0 additions & 3 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,3 @@ pluginManagement {
}

rootProject.name = 'WSS-Server'

include 'wss-service-support'
include 'wss-common'
12 changes: 0 additions & 12 deletions wss-common/build.gradle

This file was deleted.

24 changes: 0 additions & 24 deletions wss-service-support/build.gradle

This file was deleted.

Binary file not shown.
7 changes: 0 additions & 7 deletions wss-service-support/gradle/wrapper/gradle-wrapper.properties

This file was deleted.

Loading