mirror of
https://github.com/starship/starship.git
synced 2024-11-22 16:23:17 +01:00
feat: Show Java module when build.sbt is present (#505)
* feat: Show Java icon and info when build.sbt detected * docs: Mention build.sbt detection
This commit is contained in:
parent
72fbd5b1ba
commit
8058b51273
@ -712,7 +712,7 @@ style = "bold dimmed green"
|
||||
The `java` module shows the currently installed version of Java.
|
||||
The module will be shown if any of the following conditions are met:
|
||||
|
||||
- The current directory contains a `pom.xml` or `build.gradle` file
|
||||
- The current directory contains a `pom.xml`, `build.gradle` or `build.sbt` file
|
||||
- The current directory contains a file with the `.java`, `.class` or `.jar` extension
|
||||
|
||||
### Options
|
||||
|
@ -8,11 +8,11 @@ use super::{Context, Module};
|
||||
///
|
||||
/// Will display the Java version if any of the following criteria are met:
|
||||
/// - Current directory contains a file with a `.java`, `.class` or `.jar` extension
|
||||
/// - Current directory contains a `pom.xml` or `build.gradle` file
|
||||
/// - Current directory contains a `pom.xml`, `build.gradle` or `build.sbt` file
|
||||
pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
|
||||
let is_java_project = context
|
||||
.try_begin_scan()?
|
||||
.set_files(&["pom.xml", "build.gradle"])
|
||||
.set_files(&["pom.xml", "build.gradle", "build.sbt"])
|
||||
.set_extensions(&["java", "class", "jar"])
|
||||
.is_match();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user