1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-12-26 03:27:30 +00:00

feat: Adds build.gradle.kts detection to the Java module (#731)

This commit is contained in:
Mario Arias 2019-12-19 23:17:50 +08:00 committed by Matan Kushner
parent 63594b746e
commit aab35674d2
2 changed files with 3 additions and 3 deletions

View File

@ -802,7 +802,7 @@ style = "bold dimmed green"
The `java` module shows the currently installed version of Java. The `java` module shows the currently installed version of Java.
The module will be shown if any of the following conditions are met: The module will be shown if any of the following conditions are met:
- The current directory contains a `pom.xml`, `build.gradle` or `build.sbt` file - The current directory contains a `pom.xml`, `build.gradle`, `build.gradle.kts` or `build.sbt` file
- The current directory contains a file with the `.java`, `.class` or `.jar` extension - The current directory contains a file with the `.java`, `.class` or `.jar` extension
### Options ### Options

View File

@ -9,11 +9,11 @@ use crate::utils;
/// ///
/// Will display the Java version if any of the following criteria are met: /// 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 file with a `.java`, `.class` or `.jar` extension
/// - Current directory contains a `pom.xml`, `build.gradle` or `build.sbt` file /// - Current directory contains a `pom.xml`, `build.gradle`, `build.gradle.kts` or `build.sbt` file
pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> { pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
let is_java_project = context let is_java_project = context
.try_begin_scan()? .try_begin_scan()?
.set_files(&["pom.xml", "build.gradle", "build.sbt"]) .set_files(&["pom.xml", "build.gradle", "build.gradle.kts", "build.sbt"])
.set_extensions(&["java", "class", "jar"]) .set_extensions(&["java", "class", "jar"])
.is_match(); .is_match();