jansi
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.fusesource.jansi</groupId> <artifactId>jansi</artifactId> <version>2.4.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (C) 2009-2017 the original author(s). Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.fusesource</groupId> <artifactId>fusesource-pom</artifactId> <version>1.12</version> </parent> <groupId>org.fusesource.jansi</groupId> <artifactId>jansi</artifactId> <version>2.4.2</version> <packaging>jar</packaging> <name>Jansi</name> <description>Jansi is a java library for generating and interpreting ANSI escape sequences.</description> <url>http://fusesource.github.io/jansi</url> <inceptionYear>2009</inceptionYear> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>chirino</id> <name>Hiram Chirino</name> <email>hiram@hiramchirino.com</email> <url>http://hiramchirino.com</url> <timezone>GMT-5</timezone> </developer> <developer> <id>gnodet</id> <name>Guillaume Nodet</name> <email>gnodet@gmail.com</email> <timezone>GMT+1</timezone> </developer> </developers> <mailingLists> <mailingList> <name>Discussion List</name> <subscribe>jansi-dev+subscribe@googlegroups.com</subscribe> <unsubscribe>jansi-dev+unsubscribe@googlegroups.com</unsubscribe> <post>jansi-dev@googlegroups.com</post> <archive>http://groups.google.com/group/jansi</archive> </mailingList> <mailingList> <name>Commits and Issue Tracker List</name> <subscribe>jansi-commits+subscribe@googlegroups.com</subscribe> <unsubscribe>jansi-commisots+unsubscribe@googlegroups.com</unsubscribe> <post>jansi-commits@googlegroups.com</post> <archive>http://groups.google.com/group/jansi-commits</archive> </mailingList> </mailingLists> <scm> <connection>scm:git:git://github.com/fusesource/jansi.git</connection> <developerConnection>scm:git:ssh://git@github.com/fusesource/jansi.git</developerConnection> <tag>jansi-2.4.2</tag> <url>https://github.com/fusesource/jansi</url> </scm> <issueManagement> <system>jira</system> <url>https://github.com/fusesource/jansi/issues</url> </issueManagement> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>Sonatype Staging Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Snapshot Repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <javadocSource>8</javadocSource> <jdkTarget>8</jdkTarget> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <slf4j-version>1.6.1</slf4j-version> <project.build.outputTimestamp>2025-04-29T06:22:01Z</project.build.outputTimestamp> </properties> <dependencies> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.7.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-params</artifactId> <version>5.7.0</version> <scope>test</scope> </dependency> <dependency> <groupId>info.picocli</groupId> <artifactId>picocli-codegen</artifactId> <version>4.5.2</version> <scope>test</scope> </dependency> </dependencies> <repositories> <repository> <snapshots> <enabled>true</enabled> </snapshots> <id>sonatype-nexus-snapshots</id> <name>Sonatype Snapshot Repository</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </repository> </repositories> <build> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> <includes> <include>**/*.properties</include> </includes> </resource> <resource> <filtering>false</filtering> <directory>src/main/resources</directory> <excludes> <exclude>**/*.properties</exclude> </excludes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <release>${jdkTarget}</release> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>5.1.1</version> <executions> <execution> <id>bundle-manifest</id> <goals> <goal>manifest</goal> </goals> <phase>process-classes</phase> <configuration> <instructions> <Main-Class>org.fusesource.jansi.AnsiMain</Main-Class> <Export-Package>!org.fusesource.jansi.internal.native.*; org.fusesource.jansi.*; -noimport:=true</Export-Package> <_removeheaders>Bnd-LastModified,Include-Resource,Private-Package,Originally-Created-By</_removeheaders> <_reproducible>true</_reproducible> </instructions> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.moditect</groupId> <artifactId>moditect-maven-plugin</artifactId> <version>1.0.0.Final</version> <executions> <execution> <id>add-module-infos</id> <goals> <goal>add-module-info</goal> </goals> <phase>package</phase> <configuration> <jvmVersion>9</jvmVersion> <module> <moduleInfo> <name>org.fusesource.jansi</name> <exports>org.fusesource.jansi; org.fusesource.jansi.io;</exports> </moduleInfo> </module> <overwriteExistingFiles>true</overwriteExistingFiles> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.0.0</version> <dependencies> <dependency> <groupId>info.picocli</groupId> <artifactId>picocli-codegen</artifactId> <version>4.5.2</version> </dependency> </dependencies> <executions> <execution> <id>generate-graalvm-info</id> <goals> <goal>java</goal> </goals> <phase>process-classes</phase> <configuration> <includeProjectDependencies>true</includeProjectDependencies> <classpathScope>test</classpathScope> <executableDependency> <groupId>info.picocli</groupId> <artifactId>picocli-codegen</artifactId> </executableDependency> <mainClass>picocli.codegen.aot.graalvm.JniConfigGenerator</mainClass> <arguments> <argument>org.fusesource.jansi.internal.CLibrary</argument> <argument>org.fusesource.jansi.internal.Kernel32</argument> <argument>-o=target/classes/META-INF/native-image/jansi/jni-config.json</argument> </arguments> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M5</version> <configuration> <redirectTestOutputToFile>true</redirectTestOutputToFile> <forkCount>1</forkCount> <reuseForks>true</reuseForks> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.2.0</version> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>org.fusesource.jansi</Automatic-Module-Name> </manifestEntries> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.2.0</version> <configuration> <doctitle>${project.name} API Reference (${project.version})</doctitle> <windowtitle>${project.name} API Reference (${project.version})</windowtitle> <locale>en_US</locale> <linksource>true</linksource> <notimestamp>true</notimestamp> <quiet>true</quiet> <docencoding>UTF-8</docencoding> <version>false</version> <author>true</author> <keywords>true</keywords> <source>${javadocSource}</source> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>3.0.0-M1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.0.0-M1</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> </configuration> </plugin> <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> <version>2.38.0</version> <configuration> <java> <toggleOffOn /> <palantirJavaFormat> <version>2.35.0</version> </palantirJavaFormat> <importOrder> <order>java|javax,org,,\#</order> </importOrder> <removeUnusedImports /> <licenseHeader> <content>/* * Copyright (C) 2009-2023 the original author(s). * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */</content> </licenseHeader> </java> <pom> <sortPom> <expandEmptyElements>false</expandEmptyElements> <nrOfIndentSpace>4</nrOfIndentSpace> <spaceBeforeCloseEmptyElement>true</spaceBeforeCloseEmptyElement> </sortPom> </pom> <upToDateChecking> <enabled>true</enabled> </upToDateChecking> </configuration> <executions> <execution> <goals> <goal>apply</goal> </goals> <phase>process-sources</phase> </execution> </executions> </plugin> </plugins> <extensions> <extension> <groupId>org.fusesource.mvnplugins</groupId> <artifactId>fuse-jxr-skin</artifactId> <version>1.9</version> </extension> </extensions> </build> <profiles> <profile> <id>sign</id> <activation> <property> <name>!nosign</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <goals> <goal>sign</goal> </goals> <phase>verify</phase> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>