TerminalFX icon indicating copy to clipboard operation
TerminalFX copied to clipboard

Dependency missing

Open ckosmowski opened this issue 4 years ago • 1 comments

Terminal 1.0.8 is searching for the dependecy of pty4j:

Could not find com.kodedu.pty4j:pty4j:0.7.4

How can this be solved? It is not found in the given repository url that you state in the docs.

ckosmowski avatar Sep 30 '20 06:09 ckosmowski

Hi, i experienced the same issue I resolved by adding the jcenter Maven repository in pom.xml.

        <repository>
            <id>jcenter</id>
            <url>https://jcenter.bintray.com</url>
        </repository>

After that, force a maven sync or delete ".m2\repository\org\jetbrains\pty4j" from the Maven cache

smx-smx avatar Jul 30 '21 12:07 smx-smx