weblogic 대응

This commit is contained in:
Rinjae
2025-09-19 13:53:48 +09:00
parent fbf6d9d2b1
commit 5fd920ea2c
3 changed files with 44 additions and 1 deletions
+19
View File
@@ -2,6 +2,7 @@ plugins {
id 'org.springframework.boot' version '2.7.17'
id 'io.spring.dependency-management' version '1.1.3'
id 'java'
id 'war'
// id "org.sonarqube" version "4.2.1.3168"
}
@@ -13,6 +14,7 @@ version = '2.0.0'
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
configurations {
annotationProcessor
configureEach {
@@ -68,6 +70,8 @@ dependencies {
runtimeOnly 'org.springframework.boot:spring-boot-devtools'
implementation 'org.mdkt.compiler:InMemoryJavaCompiler:1.3.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
}
bootJar {
@@ -77,3 +81,18 @@ bootJar {
test {
useJUnitPlatform()
}
war {
// Set the name of the WAR file (optional)
archiveFileName = "elink-test-master.war"
// from('src/main/resources/jeus-web-dd.xml') { into 'WEB-INF' }
from('src/main/resources/weblogic.xml') { into 'WEB-INF' }
}
bootWar {
archiveFileName = "elink-test-master.war"
from('src/main/resources/weblogic.xml') { into 'WEB-INF' }
}