jline2 2.14.6-1 source package in Ubuntu

Changelog

jline2 (2.14.6-1) unstable; urgency=medium

  * Team upload.
  * New upstream release
    - Patched pom.xml to ignore warnings
    - New build dependency on libeasymock-java and libpowermock-java
    - Disabled the tests (fail with Java 9)
    - Depend on libjansi-java (>= 1.12)
    - Ignore maven-enforcer-plugin
  * Switch to debhelper level 11

 -- Emmanuel Bourg <email address hidden>  Fri, 30 Mar 2018 13:07:18 +0200

Upload details

Uploaded by:
Debian Java Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Java Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Bionic release universe misc

Builds

Bionic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
jline2_2.14.6-1.dsc 2.0 KiB c8f7f88a26965def910a47db0d8d0ee5406ec02aab1fdfbc9c79f6d2bffbce98
jline2_2.14.6.orig.tar.xz 91.6 KiB 6035c22c591fae78555a271a5846654555e32eb779ed44fd410c10ba324f1b5c
jline2_2.14.6-1.debian.tar.xz 4.6 KiB ed3fe5699cc5a05687f53ae342b9084a31bbec0b77f989f706e5ab2f199681a9

Available diffs

No changes file available.

Binary packages built by this source

libjline2-java: console input handling in Java

 JLine is a Java library for handling console input. It is similar in
 functionality to BSD editline and GNU readline. People familiar with the
 readline/editline capabilities for modern shells (such as bash and tcsh) will
 find most of the command editing features of JLine to be familiar.
 .
 Jline2 suppors the current features:
 .
  * Command history - Lines that have been previously entered may be recalled
  and edited and can be persisted so that they are available across sessions
  of your program.
  * Line editing - JLine allows full editing of the current command line and
  attempts to mimic as much of the behavior of GNU Readline as possible,
  including support for both emacs and vi key mappings.
  * Completion - JLine provides a pluggable mechanism for implementing
  command line tab completion (of course completion can be bound to any key
  you wish).
  * Custom Key bindings - Keys may be arbitrarily remapped to perform a
  specific action, and JLine attempts to honor any mapping that is set in
  your existing readline .inputrc file.
  * Character Masking - Input may be gathered from the user without any
  visual feedback. This is useful for prompting for passwords.
  * 99.99% Java - The vast portion of JLine is all Java, using only some
  small bit of native code, provided by the Jansi project, to support
  Windows.