admin/front 분리

This commit is contained in:
2026-07-20 17:49:24 +09:00
parent 9269278e40
commit ed41ef24cb
673 changed files with 16782 additions and 11277 deletions
+23 -62
View File
@@ -1,73 +1,34 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.5.10'
id 'io.spring.dependency-management' version '1.1.7'
id 'org.springframework.boot' version '3.5.10' apply false
id 'io.spring.dependency-management' version '1.1.7' apply false
}
group = 'com.alist'
version = '0.0.1-SNAPSHOT'
description = 'alist api project'
allprojects {
group = 'com.alist'
version = '0.0.1-SNAPSHOT'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
repositories {
mavenCentral()
}
}
repositories {
mavenCentral()
}
subprojects {
apply plugin: 'java'
apply plugin: 'io.spring.dependency-management'
dependencies {
implementation 'org.springframework.boot:spring-boot-starter'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
// Web 기본
implementation 'org.springframework.boot:spring-boot-starter-web'
dependencyManagement {
imports {
mavenBom "org.springframework.boot:spring-boot-dependencies:3.5.10"
}
}
// security
implementation 'org.springframework.boot:spring-boot-starter-security'
// jwt
implementation 'io.jsonwebtoken:jjwt-api:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.11.5'
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.11.5'
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
// Lombok
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
// jdbc
implementation 'org.bgee.log4jdbc-log4j2:log4jdbc-log4j2-jdbc4.1:1.16'
// MariaDB
implementation 'org.mariadb.jdbc:mariadb-java-client'
implementation 'com.microsoft.sqlserver:mssql-jdbc:12.8.1.jre11'
// swagger
implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.0'
// MyBatis (Boot 3 전용)
implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:3.0.3'
// validation
implementation 'org.springframework.boot:spring-boot-starter-validation'
// health
implementation 'org.springframework.boot:spring-boot-starter-actuator'
// Redis (SSO 세션 공유)
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
}
tasks.named('test') {
useJUnitPlatform()
}
bootJar {
archiveFileName = "api.jar"
}
jar {
enabled = false
tasks.withType(Test).configureEach {
useJUnitPlatform()
}
}