Skip to content

Commit 4bab975

Browse files
committed
Add PathSearch component
- New PatchSearch component - Allow user to define base directory for search - Show (using single select list) search results - Allow user to define search string - Implement algorithms(start with exact-match and fuzzy-match) from fuzzy search tool (fzf) - Sample "component path search" and change "component path" to "component path input" - Fixes #556
1 parent 267c0e6 commit 4bab975

26 files changed

+3605
-5
lines changed

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
version=3.0.0-SNAPSHOT
22
springBootVersion=3.0.0-M5
33
nativeBuildToolsVersion=0.9.14
4+
commonsIoVersion=2.11.0
45
jlineVersion=3.21.0
56
st4Version=4.3.1
67
jimfsVersion=1.2

spring-shell-core/spring-shell-core.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ dependencies {
1212
api('org.springframework:spring-messaging')
1313
api('org.jline:jline')
1414
api('org.antlr:ST4')
15+
api('commons-io:commons-io')
1516
compileOnly 'com.google.code.findbugs:jsr305'
1617
testImplementation 'org.springframework.boot:spring-boot-starter-test'
1718
testImplementation 'org.awaitility:awaitility'

0 commit comments

Comments
 (0)