feat: use thirdparty for class conflict
Dev Deploy / Build Jar (ubuntu-latest) (push) Has been cancelled
Dev Deploy / Build Jar (windows-latest) (push) Has been cancelled
Unit-Test / UniteTest (push) Has been cancelled
Dev Deploy / Docker Push (push) Has been cancelled
Dev Deploy / Deploy to Maven Central (push) Has been cancelled
Dev Deploy / Deploy to Northflank (push) Has been cancelled

This commit is contained in:
ReaJason
2026-03-19 00:33:14 +08:00
parent 9d2b4c7774
commit 25e1b3964a
14 changed files with 29 additions and 6 deletions
+20
View File
@@ -0,0 +1,20 @@
plugins {
id("java-library")
id("maven-publish-convention")
}
group = "com.reajason.javaweb"
description = "thirdparty simple class"
version = rootProject.version
java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
dependencies {
implementation(libs.javax.servlet.api)
}