File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed
impl/maven-jline/src/main/java/org/apache/maven/jline Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -225,6 +225,11 @@ public boolean hasMouseSupport() {
225225 return getTerminal ().hasMouseSupport ();
226226 }
227227
228+ @ Override
229+ public MouseTracking getCurrentMouseTracking () {
230+ return getTerminal ().getCurrentMouseTracking ();
231+ }
232+
228233 @ Override
229234 public boolean trackMouse (MouseTracking mouseTracking ) {
230235 return getTerminal ().trackMouse (mouseTracking );
@@ -240,6 +245,16 @@ public MouseEvent readMouseEvent(IntSupplier intSupplier) {
240245 return getTerminal ().readMouseEvent (intSupplier );
241246 }
242247
248+ @ Override
249+ public MouseEvent readMouseEvent (String prefix ) {
250+ return getTerminal ().readMouseEvent (prefix );
251+ }
252+
253+ @ Override
254+ public MouseEvent readMouseEvent (IntSupplier reader , String prefix ) {
255+ return getTerminal ().readMouseEvent (reader , prefix );
256+ }
257+
243258 @ Override
244259 public boolean hasFocusSupport () {
245260 return getTerminal ().hasFocusSupport ();
Original file line number Diff line number Diff line change @@ -153,7 +153,7 @@ under the License.
153153 <hamcrestVersion >3.0</hamcrestVersion >
154154 <jakartaInjectApiVersion >2.0.1</jakartaInjectApiVersion >
155155 <javaxAnnotationApiVersion >1.3.2</javaxAnnotationApiVersion >
156- <jlineVersion >3.29 .0</jlineVersion >
156+ <jlineVersion >3.30 .0</jlineVersion >
157157 <junitVersion >5.12.2</junitVersion >
158158 <jxpathVersion >1.4.0</jxpathVersion >
159159 <logbackClassicVersion >1.5.18</logbackClassicVersion >
You can’t perform that action at this time.
0 commit comments