skrapeit / skrape.it

A Kotlin-based testing/scraping/parsing library providing the ability to analyze and extract data from HTML (server & client-side rendered). It places particular emphasis on ease of use and a high level of readability by providing an intuitive DSL. It aims to be a testing lib, but can also be used to scrape websites in a convenient fashion.
https://docs.skrape.it
MIT License
805 stars 59 forks source link

[BUG] org.fusesource.jansi.WindowsAnsiOutputStream #167

Closed Exobitt closed 2 years ago

Exobitt commented 2 years ago

When trying to built a project with gradle on windows, i keep getting a ClassNotFoundException, caused by org.fusesource.jansi.WindowsAnsiOutputStream.

` Caused by: java.lang.ClassNotFoundException: org.fusesource.jansi.WindowsAnsiOutputStream Caused by: java.lang.ClassNotFoundException: org.fusesource.jansi.WindowsAnsiOutputStream

at  at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:636)
at  at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:182)
at  at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:519)
at  at ch.qos.logback.core.util.OptionHelper.instantiateByClassNameAndParameter(OptionHelper.java:56)
at  ... 65 common frames omitted

`

christian-draeger commented 2 years ago

hey @Exobitt thx for reporting. we are currently executing / testing our code on linux (ubuntu) during CI runs and indirect against mac OS since i am developing on it. So first of all i force windows support by adding windows to our CI build. Thereby i hope i have the chance to reproduce the error :)

christian-draeger commented 2 years ago

some info about the problem with jansi on windows: https://github.com/skrapeit/skrape.it/pull/168#issuecomment-947990305

christian-draeger commented 2 years ago

version 1.1.6 including the jansi fix has just been released to maven central. have fun :)