2021-03-15 10:40:52 +00:00
|
|
|
use crate::config::ModuleConfig;
|
2019-11-06 12:59:12 +00:00
|
|
|
|
2021-03-31 15:31:55 +00:00
|
|
|
use serde::Serialize;
|
2019-11-06 12:59:12 +00:00
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
|
2021-03-31 15:31:55 +00:00
|
|
|
#[derive(Clone, ModuleConfig, Serialize)]
|
2019-11-06 12:59:12 +00:00
|
|
|
pub struct JavaConfig<'a> {
|
|
|
|
pub disabled: bool,
|
2020-07-07 22:45:32 +00:00
|
|
|
pub format: &'a str,
|
2021-04-08 22:37:54 +00:00
|
|
|
pub version_format: &'a str,
|
2020-07-07 22:45:32 +00:00
|
|
|
pub style: &'a str,
|
|
|
|
pub symbol: &'a str,
|
2021-02-21 18:57:09 +00:00
|
|
|
pub detect_extensions: Vec<&'a str>,
|
|
|
|
pub detect_files: Vec<&'a str>,
|
|
|
|
pub detect_folders: Vec<&'a str>,
|
2019-11-06 12:59:12 +00:00
|
|
|
}
|
|
|
|
|
2021-03-15 10:40:52 +00:00
|
|
|
impl<'a> Default for JavaConfig<'a> {
|
|
|
|
fn default() -> Self {
|
2019-11-06 12:59:12 +00:00
|
|
|
JavaConfig {
|
2021-01-20 17:51:30 +00:00
|
|
|
format: "via [$symbol($version )]($style)",
|
2021-04-08 22:37:54 +00:00
|
|
|
version_format: "v${raw}",
|
2019-11-06 12:59:12 +00:00
|
|
|
disabled: false,
|
2020-07-07 22:45:32 +00:00
|
|
|
style: "red dimmed",
|
|
|
|
symbol: "☕ ",
|
2021-02-21 18:57:09 +00:00
|
|
|
detect_extensions: vec!["java", "class", "jar", "gradle", "clj", "cljc"],
|
|
|
|
detect_files: vec![
|
|
|
|
"pom.xml",
|
|
|
|
"build.gradle.kts",
|
|
|
|
"build.sbt",
|
|
|
|
".java-version",
|
|
|
|
"deps.edn",
|
|
|
|
"project.clj",
|
|
|
|
"build.boot",
|
|
|
|
],
|
|
|
|
detect_folders: vec![],
|
2019-11-06 12:59:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|