pty4j
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.jetbrains.pty4j</groupId> <artifactId>pty4j</artifactId> <version>0.13.11</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>org.jetbrains.pty4j</groupId> <artifactId>pty4j</artifactId> <version>0.13.11</version> <name>pty4j</name> <description>Pseudo terminal(PTY) implementation in Java</description> <url>https://github.com/JetBrains/pty4j</url> <licenses> <license> <name>Eclipse Public License 1.0</name> <url>https://opensource.org/licenses/eclipse-1.0.php</url> </license> </licenses> <developers> <developer> <id>sergey.simonchik</id> <name>Sergey Simonchik</name> <email>sergey.simonchik@jetbrains.com</email> <organization>JetBrains</organization> <organizationUrl>https://www.jetbrains.com</organizationUrl> </developer> <developer> <id>dmitry.trofimov</id> <name>Dmitry Trofimov</name> <email>dmitry.trofimov@jetbrains.com</email> <organization>JetBrains</organization> <organizationUrl>https://www.jetbrains.com</organizationUrl> </developer> </developers> <scm> <connection>scm:git:git@github.com:JetBrains/pty4j.git</connection> <developerConnection>scm:git:ssh:github.com/JetBrains/pty4j.git</developerConnection> <url>https://github.com/JetBrains/pty4j</url> </scm> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>2.1.21</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains</groupId> <artifactId>annotations</artifactId> <version>24.0.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.13</version> <scope>runtime</scope> </dependency> <dependency> <groupId>net.java.dev.jna</groupId> <artifactId>jna</artifactId> <version>5.14.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>net.java.dev.jna</groupId> <artifactId>jna-platform</artifactId> <version>5.14.0</version> <scope>runtime</scope> </dependency> </dependencies> </project>