Skip to content

Commit

Permalink
Jansi implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Oct 11, 2023
1 parent 250e870 commit b3ec7f0
Show file tree
Hide file tree
Showing 31 changed files with 4,056 additions and 216 deletions.
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2002-2018, the original author or authors.
Copyright (c) 2002-2023, the original author or authors.
All rights reserved.

https://opensource.org/licenses/BSD-3-Clause
Expand Down
36 changes: 36 additions & 0 deletions jansi-core/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2002-2022, the original author or authors.
This software is distributable under the BSD license. See the terms of the
BSD license in the documentation provided with this software.
https://opensource.org/licenses/BSD-3-Clause
-->
<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.jline</groupId>
<artifactId>jline-parent</artifactId>
<version>3.23.1-SNAPSHOT</version>
</parent>

<artifactId>jansi-core</artifactId>
<name>Jansi Core</name>

<properties>
<automatic.module.name>org.jansi.core</automatic.module.name>
</properties>

<dependencies>
<dependency>
<groupId>org.jline</groupId>
<artifactId>jline-terminal</artifactId>
</dependency>
</dependencies>

</project>
Loading

0 comments on commit b3ec7f0

Please sign in to comment.