[package]
edition = "2024"
name = "jbuild"
version = "0.1.8"
authors = ["Ying Kit WONG"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance Java build tool supporting Maven and Gradle"
homepage = "https://github.com/yingkitw/jbuild"
documentation = "https://docs.rs/jbuild"
readme = "README.md"
keywords = [
"java",
"build",
"maven",
"gradle",
"spring-boot",
]
categories = [
"development-tools::build-utils",
"command-line-utilities",
]
license = "Apache-2.0"
repository = "https://github.com/yingkitw/jbuild"
[package.metadata]
supported_jdk = [
"8",
"11",
"17",
"21",
"24",
]
supported_jvm = [
"openjdk",
"temurin",
"oraclejdk",
]
supported_runtimes = [
"wildfly",
"jboss-eap",
"websphere-traditional",
"websphere-liberty",
"spring-boot",
]
[features]
default = []
jni = ["dep:jni"]
[lib]
name = "jbuild"
path = "src/lib.rs"
[[bin]]
name = "jbuild"
path = "src/main.rs"
[[test]]
name = "annotation_processor_test"
path = "tests/annotation_processor_test.rs"
[[test]]
name = "ast_util_test"
path = "tests/ast_util_test.rs"
[[test]]
name = "base_check_test"
path = "tests/base_check_test.rs"
[[test]]
name = "build_system_test"
path = "tests/build_system_test.rs"
[[test]]
name = "check_edge_cases_test"
path = "tests/check_edge_cases_test.rs"
[[test]]
name = "check_test"
path = "tests/check_test.rs"
[[test]]
name = "cli_commands_test"
path = "tests/cli_commands_test.rs"
[[test]]
name = "common_test"
path = "tests/common_test.rs"
[[test]]
name = "comprehensive_example_test"
path = "tests/comprehensive_example_test.rs"
[[test]]
name = "config_test"
path = "tests/config_test.rs"
[[test]]
name = "core_test"
path = "tests/core_test.rs"
[[test]]
name = "default_logger_test"
path = "tests/default_logger_test.rs"
[[test]]
name = "error_handling_test"
path = "tests/error_handling_test.rs"
[[test]]
name = "event_test"
path = "tests/event_test.rs"
[[test]]
name = "example_project"
path = "tests/example_project.rs"
[[test]]
name = "example_test"
path = "tests/example_test.rs"
[[test]]
name = "file_test"
path = "tests/file_test.rs"
[[test]]
name = "full_ident_test"
path = "tests/full_ident_test.rs"
[[test]]
name = "gradle_tests"
path = "tests/gradle_tests.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "kotlin_compiler_test"
path = "tests/kotlin_compiler_test.rs"
[[test]]
name = "model_builder_tests"
path = "tests/model_builder_tests.rs"
[[test]]
name = "multi_module_tests"
path = "tests/multi_module_tests.rs"
[[test]]
name = "output_formatter_test"
path = "tests/output_formatter_test.rs"
[[test]]
name = "parallel_resolver_test"
path = "tests/parallel_resolver_test.rs"
[[test]]
name = "parser_test"
path = "tests/parser_test.rs"
[[test]]
name = "persistent_cache_test"
path = "tests/persistent_cache_test.rs"
[[test]]
name = "runner_test"
path = "tests/runner_test.rs"
[[test]]
name = "scala_compiler_test"
path = "tests/scala_compiler_test.rs"
[[test]]
name = "tree_walker_file_set_check_test"
path = "tests/tree_walker_file_set_check_test.rs"
[[test]]
name = "tree_walker_test"
path = "tests/tree_walker_test.rs"
[[test]]
name = "unit_tests"
path = "tests/unit_tests.rs"
[[test]]
name = "utils_test"
path = "tests/utils_test.rs"
[[test]]
name = "violation_test"
path = "tests/violation_test.rs"
[[test]]
name = "workspace_test"
path = "tests/workspace_test.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.atty]
version = "0.2"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.4"
features = ["derive"]
[dependencies.clap_complete]
version = "4.4"
[dependencies.colored]
version = "2.1"
[dependencies.dirs]
version = "5.0"
[dependencies.env_logger]
version = "0.11"
[dependencies.glob]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.indexmap]
version = "2.0"
[dependencies.indicatif]
version = "0.17"
[dependencies.jni]
version = "0.21"
optional = true
[dependencies.log]
version = "0.4"
[dependencies.md5]
version = "0.7"
[dependencies.notify]
version = "6.1"
[dependencies.num_cpus]
version = "1.16"
[dependencies.pathdiff]
version = "0.2"
[dependencies.quick-xml]
version = "0.31"
features = ["serialize"]
[dependencies.rayon]
version = "1.8"
[dependencies.regex]
version = "1.10"
[dependencies.reqwest]
version = "0.11"
features = [
"json",
"blocking",
]
[dependencies.roxmltree]
version = "0.19"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha1]
version = "0.10"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.35"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.tree-sitter]
version = "0.20"
[dependencies.tree-sitter-java]
version = "0.20"
[dependencies.ureq]
version = "2.9"
[dependencies.url]
version = "2.5"
[dependencies.urlencoding]
version = "2.1"
[dependencies.walkdir]
version = "2.4"
[dependencies.which]
version = "6.0"
[dependencies.zip]
version = "0.6"
[dev-dependencies.tempfile]
version = "3.10"