teavm/gradle/libs.versions.toml

74 lines
2.9 KiB
TOML
Raw Normal View History

2023-01-03 22:29:13 +08:00
[versions]
2023-08-01 00:46:26 +08:00
asm = "9.5"
2023-02-25 02:55:35 +08:00
jackson = "2.14.2"
jetty = "9.4.50.v20221201"
2023-01-03 22:29:13 +08:00
shadow = "7.1.2"
checkstyle = "8.41"
idea = "2020.1.4"
idea-scala = "2020.1.43"
maven = "3.5.4"
maven-tools = "3.7.1"
[libraries]
2023-02-25 02:55:35 +08:00
hppc = "com.carrotsearch:hppc:0.9.1"
commons-io = "commons-io:commons-io:2.11.0"
commons-cli = "commons-cli:commons-cli:1.5.0"
rhino = "org.mozilla:rhino:1.7.14"
slf4j = "org.slf4j:slf4j-api:2.0.6"
2023-01-03 22:29:13 +08:00
javax-servlet = "javax.servlet:javax.servlet-api:3.1.0"
javax-websocket = "javax.websocket:javax.websocket-api:1.0"
asm = { module = "org.ow2.asm:asm", version.ref = "asm" }
asm-commons = { module = "org.ow2.asm:asm-commons", version.ref = "asm" }
asm-util = { module = "org.ow2.asm:asm-util", version.ref = "asm" }
asm-tree = { module = "org.ow2.asm:asm-tree", version.ref = "asm" }
asm-analysis = { module = "org.ow2.asm:asm-analysis", version.ref = "asm" }
jackson-annotations = { module = "com.fasterxml.jackson.core:jackson-annotations", version.ref = "jackson" }
jackson-databind = { module = "com.fasterxml.jackson.core:jackson-databind", version.ref = "jackson" }
jzlib = "com.jcraft:jzlib:1.1.3"
2023-02-25 02:55:35 +08:00
jodaTime = "joda-time:joda-time:2.12.2"
htmlunit = "net.sourceforge.htmlunit:htmlunit:2.70.0"
httpclient = "org.apache.httpcomponents:httpclient:4.5.14"
2023-01-03 22:29:13 +08:00
jetty-server = { module = "org.eclipse.jetty:jetty-server", version.ref = "jetty" }
jetty-websocket-server = { module = "org.eclipse.jetty.websocket:javax-websocket-server-impl", version.ref = "jetty" }
jetty-websocket-client = { module = "org.eclipse.jetty.websocket:websocket-client", version.ref = "jetty" }
junit = "junit:junit:4.13.2"
testng = "org.testng:testng:7.7.0"
maven-plugin-api = { module = "org.apache.maven:maven-plugin-api", version.ref = "maven" }
maven-artifact = { module = "org.apache.maven:maven-artifact", version.ref = "maven" }
maven-core = { module = "org.apache.maven:maven-core", version.ref = "maven" }
maven-embedder = { module = "org.apache.maven:maven-embedder", version.ref = "maven" }
maven-compat = { module = "org.apache.maven:maven-compat", version.ref = "maven" }
[libraries.maven-plugin-tools-api]
module = "org.apache.maven.plugin-tools:maven-plugin-tools-api"
version.ref = "maven-tools"
[libraries.maven-plugin-tools-generators]
module = "org.apache.maven.plugin-tools:maven-plugin-tools-generators"
version.ref = "maven-tools"
[libraries.maven-plugin-tools-annotations]
module = "org.apache.maven.plugin-tools:maven-plugin-tools-annotations"
version.ref = "maven-tools"
[libraries.maven-plugin-annotations]
module = "org.apache.maven.plugin-tools:maven-plugin-annotations"
version.ref = "maven-tools"
[libraries.shadowPlugin]
module = "com.github.johnrengelman.shadow:com.github.johnrengelman.shadow.gradle.plugin"
version.ref = "shadow"
[plugins]
shadow = { id = "com.github.johnrengelman.shadow", version.ref = "shadow" }
2023-04-03 01:47:51 +08:00
intellij = { id = "org.jetbrains.intellij", version = "1.13.3" }
pluginPublish = { id = "com.gradle.plugin-publish", version = "1.1.0" }