init backend and sbadmin

This commit is contained in:
NAS\NASPC
2026-06-03 14:35:31 +07:00
parent 69e8b767ff
commit bab7e02b02
7 changed files with 383 additions and 13 deletions
+18 -9
View File
@@ -39,20 +39,21 @@ idea {
}
}
eclipse {
sourceSets {
main {
java {
srcDirs += ["build/generated/sources/annotationProcessor/java/main"]
}
}
}
}
// eclipse {
// sourceSets {
// main {
// java {
// srcDirs += ["build/generated/sources/annotationProcessor/java/main"]
// }
// }
// }
// }
dependencies {
implementation libs.jhipster.framework
implementation libs.mapstruct
implementation libs.springdoc.openapi.starter.webmvc.api
implementation "org.springdoc:springdoc-openapi-starter-webmvc-ui:3.0.3"
implementation "org.springframework.boot:spring-boot-h2console"
implementation "org.springframework.boot:spring-boot-jackson2"
implementation "org.springframework.boot:spring-boot-starter"
@@ -66,6 +67,7 @@ dependencies {
implementation "org.springframework.boot:spring-boot-starter-oauth2-resource-server"
implementation "org.springframework.boot:spring-boot-starter-security"
implementation "org.springframework.boot:spring-boot-starter-thymeleaf"
implementation "nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect"
implementation "org.springframework.boot:spring-boot-starter-tomcat"
implementation "org.springframework.boot:spring-boot-starter-validation"
implementation "org.springframework.boot:spring-boot-starter-web"
@@ -103,3 +105,10 @@ dependencies {
annotationProcessor "org.hibernate.orm:hibernate-processor"
// jhipster-needle-gradle-dependency - JHipster will add additional dependencies here
}
tasks.register('printSourceSets') {
doLast {
println "classesDirs = ${sourceSets.main.output.classesDirs.files}"
println "runtimeClasspath = ${sourceSets.main.runtimeClasspath.files}"
}
}