Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge Jansi library into JLine #871

Merged
merged 3 commits into from
Dec 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
2 changes: 1 addition & 1 deletion builtins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<parent>
<groupId>org.jline</groupId>
<artifactId>jline-parent</artifactId>
<version>3.24.2-SNAPSHOT</version>
<version>3.25.0-SNAPSHOT</version>
</parent>

<artifactId>jline-builtins</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion console/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<parent>
<groupId>org.jline</groupId>
<artifactId>jline-parent</artifactId>
<version>3.24.2-SNAPSHOT</version>
<version>3.25.0-SNAPSHOT</version>
</parent>

<artifactId>jline-console</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<parent>
<groupId>org.jline</groupId>
<artifactId>jline-parent</artifactId>
<version>3.24.2-SNAPSHOT</version>
<version>3.25.0-SNAPSHOT</version>
</parent>

<artifactId>jline-demo</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion graal/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<parent>
<groupId>org.jline</groupId>
<artifactId>jline-parent</artifactId>
<version>3.24.2-SNAPSHOT</version>
<version>3.25.0-SNAPSHOT</version>
</parent>

<artifactId>jline-graal</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion groovy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<groupId>org.jline</groupId>
<artifactId>jline-parent</artifactId>
<version>3.24.2-SNAPSHOT</version>
<version>3.25.0-SNAPSHOT</version>
</parent>
<artifactId>jline-groovy</artifactId>
<name>JLine Groovy</name>
Expand Down
46 changes: 46 additions & 0 deletions jansi-core/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?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.25.0-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>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>
Loading
Loading