teavm/gradle/libs.versions.toml

74 lines
2.9 KiB
TOML
Raw Normal View History

2023-01-03 22:29:13 +08:00
[versions]
2024-04-17 01:02:58 +08:00
asm = "9.7"
jackson = "2.17.0"
jetty = "9.4.54.v20240208"
2024-03-22 01:26:56 +08:00
shadow = "8.1.1"
checkstyle = "10.12.3"
2024-04-17 01:02:58 +08:00
idea = "2021.1.3"
idea-scala = "2021.1.22"
2023-01-03 22:29:13 +08:00
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"
2024-04-17 01:02:58 +08:00
commons-io = "commons-io:commons-io:2.16.1"
commons-cli = "commons-cli:commons-cli:1.6.0"
2023-02-25 02:55:35 +08:00
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"
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" }
2024-03-22 01:26:56 +08:00
intellij = { id = "org.jetbrains.intellij", version = "1.17.2" }
pluginPublish = { id = "com.gradle.plugin-publish", version = "1.1.0" }
nodejs = { id = "com.github.node-gradle.node", version = "7.1.0" }