Added Library JLINE
This commit is contained in:
16
.gitignore
vendored
16
.gitignore
vendored
@@ -23,8 +23,16 @@
|
||||
hs_err_pid*
|
||||
replay_pid*
|
||||
|
||||
# IDE Stuff
|
||||
.vscode/*
|
||||
target/
|
||||
*.class
|
||||
.mtj.tmp/
|
||||
*.jar
|
||||
*.war
|
||||
*.ear
|
||||
hs_err_pid*
|
||||
|
||||
# VS Code specific
|
||||
.classpath
|
||||
.project
|
||||
.settings/
|
||||
.vscode/
|
||||
*.vscode
|
||||
.vscode
|
||||
25
pom.xml
Normal file
25
pom.xml
Normal file
@@ -0,0 +1,25 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<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/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>org.cametendo</groupId>
|
||||
<artifactId>cflash</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.source>21</maven.compiler.source>
|
||||
<maven.compiler.target>21</maven.compiler.target>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.jline</groupId>
|
||||
<artifactId>jline</artifactId>
|
||||
<version>3.25.1</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
@@ -1,3 +1,4 @@
|
||||
package org.cametendo;
|
||||
import java.util.Scanner;
|
||||
|
||||
public class BlockSize {
|
||||
@@ -1,3 +1,4 @@
|
||||
package org.cametendo;
|
||||
import java.io.BufferedReader;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
@@ -1,3 +1,4 @@
|
||||
package org.cametendo;
|
||||
import java.io.IOException;
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Path;
|
||||
@@ -1,3 +1,4 @@
|
||||
package org.cametendo;
|
||||
import java.util.Scanner;
|
||||
|
||||
public class Flasher {
|
||||
@@ -1,3 +1,4 @@
|
||||
package org.cametendo;
|
||||
public class Greeting {
|
||||
public static void greeting() {
|
||||
System.out.println("Welcome to cflash!");
|
||||
@@ -1,3 +1,4 @@
|
||||
package org.cametendo;
|
||||
import java.util.Scanner;
|
||||
|
||||
public class Main {
|
||||
@@ -1,3 +1,4 @@
|
||||
package org.cametendo;
|
||||
import java.util.Scanner;
|
||||
|
||||
public class OflagHandler {
|
||||
@@ -1,3 +1,4 @@
|
||||
package org.cametendo;
|
||||
import java.io.BufferedReader;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
@@ -1,3 +1,4 @@
|
||||
package org.cametendo;
|
||||
public class YesNo {
|
||||
public static boolean check(String input) {
|
||||
switch (input) {
|
||||
Reference in New Issue
Block a user