mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
55 lines
1.7 KiB
Groovy
55 lines
1.7 KiB
Groovy
plugins {
|
|
id "java"
|
|
id 'idea'
|
|
id "jacoco"
|
|
id "io.freefair.lombok" version "8.11"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
group = 'com.reajason.javaweb.memsell'
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
finalizedBy jacocoTestReport
|
|
}
|
|
|
|
idea {
|
|
module {
|
|
excludeDirs -= file('build')
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'net.bytebuddy:byte-buddy:1.15.1'
|
|
implementation 'javax.servlet:javax.servlet-api:3.0.1'
|
|
implementation 'jakarta.servlet:jakarta.servlet-api:5.0.0'
|
|
// implementation fileTree('libs')
|
|
|
|
implementation 'commons-io:commons-io:2.18.0'
|
|
implementation 'org.apache.commons:commons-lang3:3.17.0'
|
|
implementation 'commons-codec:commons-codec:1.17.1'
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
|
|
|
|
implementation('org.apache.tomcat:tomcat-catalina:8.5.58') {
|
|
exclude group: 'org.apache.tomcat', module: 'tomcat-api'
|
|
exclude group: 'org.apache.tomcat', module: 'tomcat-juli'
|
|
exclude group: 'org.apache.tomcat', module: 'tomcat-jni'
|
|
exclude group: 'org.apache.tomcat', module: 'tomcat-coyote'
|
|
exclude group: 'org.apache.tomcat', module: 'tomcat-util'
|
|
exclude group: 'org.apache.tomcat', module: 'tomcat-util-scan'
|
|
exclude group: 'org.apache.tomcat', module: 'tomcat-annotations-api'
|
|
exclude group: 'org.apache.tomcat', module: 'tomcat-el-api'
|
|
exclude group: 'org.apache.tomcat', module: 'tomcat-jsp-api'
|
|
exclude group: 'org.apache.tomcat', module: 'tomcat-servlet-api'
|
|
exclude group: 'org.apache.tomcat', module: 'tomcat-jaspic-api'
|
|
}
|
|
|
|
|
|
testImplementation platform('org.junit:junit-bom:5.11.3')
|
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
|
} |