load tester beta

This commit is contained in:
현성필
2024-02-19 13:21:52 +09:00
parent e5807e39c3
commit 778b36d512
+10 -3
View File
@@ -10,8 +10,8 @@ jar.enabled = false
group = 'com.eactive'
version = '2.0.0'
sourceCompatibility = '1.8'
targetCompatibility = 1.8
sourceCompatibility = '11'
targetCompatibility = 11
configurations {
annotationProcessor
@@ -40,22 +40,29 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-log4j2'
implementation 'org.springframework.boot:spring-boot-starter-websocket'
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect'
implementation 'org.thymeleaf.extras:thymeleaf-extras-springsecurity5'
implementation 'com.navercorp.lucy:lucy-xss-servlet:2.0.1'
implementation group: 'com.lmax', name: 'disruptor', version: '3.4.4'
// implementation 'io.springfox:springfox-boot-starter:3.0.0'
implementation 'org.apache.httpcomponents:httpclient:4.5.14'
// implementation group: 'org.graalvm.js', name: 'js-scriptengine', version: '23.1.2'
// implementation group: 'org.graalvm.polyglot', name: 'polyglot', version: '23.1.2'
// runtimeOnly group: 'org.graalvm.polyglot', name: 'js-community', version: '23.1.2', ext: 'pom'
implementation 'org.apache.commons:commons-lang3:3.12.0'
implementation 'org.apache.commons:commons-math3:3.6.1'
implementation 'commons-io:commons-io:2.11.0'
implementation 'com.jayway.jsonpath:json-path:2.8.0'
implementation 'io.netty:netty-all:4.1.92.Final'
implementation ('commons-beanutils:commons-beanutils:1.9.4') {
implementation('commons-beanutils:commons-beanutils:1.9.4') {
exclude group: 'commons-collections', module: 'commons-collections'
}
runtimeOnly 'com.h2database:h2:1.4.200'
runtimeOnly 'org.springframework.boot:spring-boot-devtools'
implementation 'org.mdkt.compiler:InMemoryJavaCompiler:1.3.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}