Skip to content
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ The project follows a layered architecture:

- **`twinkle-terminal-aesh`** - Terminal implementation using the Aesh library
- **`twinkle-terminal-jline`** - Terminal implementation using the JLine 3 library
- **`twinkle-terminal-miniterm`** - Terminal implementation using the java-miniterm library

### Examples

- **`examples`** - Example programs demonstrating Twinkle capabilities
- `BouncingTwinkleDemo` - Animated demo with bouncing text and ASCII borders
- `ImageEncoderDemo` - Image rendering demonstration with automatic encoder detection

## Building

Expand Down
8 changes: 1 addition & 7 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<dependencies>
<dependency>
<groupId>org.codejive.twinkle</groupId>
<artifactId>twinkle-terminal-aesh</artifactId>
<artifactId>twinkle-terminal-miniterm</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
Expand All @@ -29,12 +29,6 @@
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.codejive.twinkle</groupId>
<artifactId>twinkle-image</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.github.lalyos</groupId>
<artifactId>jfiglet</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/// usr/bin/env jbang "$0" "$@" ; exit $?

// spotless:off
//DEPS org.codejive.twinkle:twinkle-terminal-aesh:1.0-SNAPSHOT
//DEPS org.codejive.twinkle:twinkle-terminal-miniterm:1.0-SNAPSHOT
//DEPS org.codejive.twinkle:twinkle-shapes:1.0-SNAPSHOT
//DEPS com.github.lalyos:jfiglet:0.0.9
// spotless:on
Expand Down

This file was deleted.

3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,17 @@
<version.jspecify>1.0.0</version.jspecify>
<version.junit>6.0.1</version.junit>
<version.assertj>3.27.6</version.assertj>
<version.miniterm>0.1.6</version.miniterm>
</properties>

<modules>
<module>twinkle-text</module>
<module>twinkle-screen</module>
<module>twinkle-shapes</module>
<module>twinkle-image</module>
<module>twinkle-terminal</module>
<module>twinkle-terminal-aesh</module>
<module>twinkle-terminal-jline</module>
<module>twinkle-terminal-miniterm</module>
<module>examples</module>
</modules>

Expand Down
Loading
Loading