fusesource / jansi

Jansi is a small java library that allows you to use ANSI escape sequences to format your console output which works even on windows.
http://fusesource.github.io/jansi/
Apache License 2.0
1.11k stars 140 forks source link

Where can I find the JAR? #206

Closed CATboardBETA closed 3 years ago

CATboardBETA commented 3 years ago

In your provided usage, it shows just importing it. But when I do this, I get this error:

Cannot resolve symbol 'fusesource'.

I used Alt+Enter => Find a Jar on the web, but it found nothing. Where can I get a Jar for jansi?

CATboardBETA commented 3 years ago

For now, I am just downloading the source and putting it in another package in my code.

renatoathaydes commented 3 years ago

@CATboardBETA In the Java world, you get jars from a Maven repository.

Maven Central is the main repository:

https://search.maven.org/artifact/org.fusesource.jansi/jansi

You can manually download the jar from there, but you should really use either Maven or Gradle to do it for you.