Skip to content

Commit

Permalink
2024.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pvlasov committed Jun 24, 2024
1 parent d282649 commit ea697c3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.nasdanika</groupId>
<version>2024.5.1</version>
<version>2024.6.0</version>
<artifactId>demo-cli</artifactId>
<packaging>jar</packaging>
<name>Nasdanika demo command line interface</name>
Expand All @@ -12,11 +12,11 @@
<dependency>
<groupId>org.nasdanika</groupId>
<artifactId>cli-launcher</artifactId>
<version>2024.5.1</version>
<version>2024.6.0</version>
</dependency>
<dependency>
<groupId>org.nasdanika.models.echarts</groupId>
<version>2024.5.1</version>
<version>2024.6.0</version>
<artifactId>graph</artifactId>
</dependency>

Expand All @@ -43,7 +43,7 @@
<dependency>
<groupId>org.nasdanika.html</groupId>
<artifactId>app-model-graph</artifactId>
<version>2024.5.1</version>
<version>2024.6.0</version>
</dependency>
</dependencies>

Expand All @@ -53,7 +53,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.6.1</version>
<version>3.7.1</version>
<executions>
<execution>
<id>copy-dependencies</id>
Expand All @@ -74,7 +74,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.2.5</version>
<version>3.3.0</version>
<executions>
<execution>
<goals>
Expand Down Expand Up @@ -109,7 +109,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.12.1</version>
<version>3.13.0</version>
<configuration>
<source>17</source>
<target>17</target>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@
import org.jline.terminal.Terminal;
import org.jline.terminal.TerminalBuilder;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Disabled;

public class TestJLine {

@Test
@Disabled
public void testJLineTerminal() throws IOException {
try (Terminal terminal = TerminalBuilder.builder().system(true).build()) {
terminal.enterRawMode();
Expand All @@ -37,6 +39,7 @@ public void testJLineTerminal() throws IOException {
}

@Test
@Disabled
public void testLineReder() throws IOException {
try (Terminal terminal = TerminalBuilder.builder().system(true).build()) {
LineReader lineReader = LineReaderBuilder
Expand Down

0 comments on commit ea697c3

Please sign in to comment.