Merge branch 'jenkins_with_weblogic' into devs/gw-metrics

This commit is contained in:
Rinjae
2025-12-05 14:26:36 +09:00
15 changed files with 275 additions and 39 deletions
+14
View File
@@ -6,6 +6,7 @@ plugins {
id 'war'
id 'com.diffplug.eclipse.apt' version '3.41.1'
id 'project-report'
id 'checkstyle'
}
group 'com.eactive'
@@ -35,6 +36,10 @@ java {
languageVersion = JavaLanguageVersion.of(8)
}
}
checkstyle {
toolVersion = '8.45.1'
}
sourceSets {
main {
@@ -59,6 +64,7 @@ war {
if (profile == "weblogic") {
webXml = file("WebContent/WEB-INF/weblogic-web.xml")
exclude 'WEB-INF/web.xml'
}
@@ -261,4 +267,12 @@ eclipse {
buildCommand 'org.eclipse.buildship.core.gradleprojectbuilder'
}
}
}
tasks.withType(Checkstyle) {
reports {
xml.required = false
html.required = true
}
}