Skip to content

Commit 950da56

Browse files
committed
Fix Minor POM Issues
View changelog entry #69 for details.
1 parent 32b9976 commit 950da56

32 files changed

+34
-52
lines changed

.gitignore

+2-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# Class files
2-
*.class
3-
41
# Log file
52
*.log
63

@@ -29,13 +26,8 @@ build/tmp/
2926
# test scripts
3027
test.bat
3128
target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
32-
*.class
3329

3430
target/
3531
*.lst
36-
*.class
37-
target/classes/main/java/jterm/test.bat
38-
.project
39-
*.class
40-
*.class
41-
*.class
32+
33+
*.class

.project

-16
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,4 @@
44
<comment></comment>
55
<projects>
66
</projects>
7-
<buildSpec>
8-
<buildCommand>
9-
<name>org.eclipse.jdt.core.javabuilder</name>
10-
<arguments>
11-
</arguments>
12-
</buildCommand>
13-
<buildCommand>
14-
<name>org.eclipse.m2e.core.maven2Builder</name>
15-
<arguments>
16-
</arguments>
17-
</buildCommand>
18-
</buildSpec>
19-
<natures>
20-
<nature>org.eclipse.m2e.core.maven2Nature</nature>
21-
<nature>org.eclipse.jdt.core.javanature</nature>
22-
</natures>
237
</projectDescription>

.settings/org.eclipse.core.resources.prefs

-4
This file was deleted.

.settings/org.eclipse.jdt.core.prefs

-12
This file was deleted.

.settings/org.eclipse.m2e.core.prefs

-4
This file was deleted.

.travis.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,4 @@ language: java
77
jdk:
88
- oraclejdk8
99
notifications:
10-
slack: sergix:qb9AYlJo8QqPybBY1FQ5V6my
11-
12-
# before_script: chmod +x compile.sh
10+
slack: sergix:qb9AYlJo8QqPybBY1FQ5V6my

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"java.configuration.updateBuildConfiguration": "automatic"
3+
}

build.bat

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
@echo off
2+
cls
3+
4+
mvn clean install

changelog.txt

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
(#69)[9/4/2017-22:01 0.4.0 Sergix]
2+
Time to start this project up again! It's been dormant for a while as I've been busy with other things.
3+
I myself have moved out of the Eclipse IDE for this project, so I have made a very small "init", "build", and "run" batchfile to help me out. :P
4+
Also, I am currently working on setting up a Vagrantfile for helping out new users who want to contribute (more info at https://www.vagrantup.com/intro/index.html).
5+
Known Issue:
6+
- SystemUtils lib not importing in Ps.java (POM issue?)
7+
18
(#68)[7/10/2017-18:03 0.4.0 Sergix]
29
Merged PR #17 which included the ReadFile() function in Files.java written by @d4nntheman.
310
- Closes issue #16

init.bat

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@echo off
2+
3+
mvn install -DgroupId=org.apache.commons -DartifactId=commons-lang3
4+
5+
cls
6+
prompt dev~JTerm/

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>sergix</groupId>
66
<artifactId>jterm</artifactId>
7-
<version>0.4.0</version>
7+
<version>0.5.0</version>
88
<packaging>jar</packaging>
99

1010
<name>jterm</name>

run.bat

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@echo off
2+
3+
java -cp target/jterm-0.5.0.jar main.java.jterm.JTerm

src/main/java/jterm/Client.class

-3.35 KB
Binary file not shown.

src/main/java/jterm/Dir.class

-4.32 KB
Binary file not shown.

src/main/java/jterm/Echo.class

-1.44 KB
Binary file not shown.

src/main/java/jterm/Exec.class

-6.5 KB
Binary file not shown.

src/main/java/jterm/Files.class

-2.75 KB
Binary file not shown.

src/main/java/jterm/JTerm.class

-3.89 KB
Binary file not shown.

src/main/java/jterm/JTerm.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,22 @@
2020
import java.util.Scanner;
2121
import java.io.*;
2222
import java.util.ArrayList;
23+
import java.util.Hashtable;
2324

2425
public class JTerm
2526
{
2627

2728
// Global version variable
28-
static String version = "0.4.0";
29+
static String version = "0.5.0";
2930

3031
// Global directory variable (use "cd" command to change)
3132
// Default value "./" is equal to the default directory set when the program starts
3233
static String currentDirectory = "./";
3334

3435
static String commandChars = "";
3536

37+
static Hashtable<String, Exec> commands = new Hashtable<String, Exec>();
38+
3639
static BufferedReader userInput = new BufferedReader(new InputStreamReader(System.in));
3740

3841
/*

src/main/java/jterm/Server$1.class

-1.54 KB
Binary file not shown.

src/main/java/jterm/Server.class

-3 KB
Binary file not shown.

src/main/java/jterm/Window.class

-2.86 KB
Binary file not shown.

src/main/java/jterm/Window.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ else if(titleNext)
132132
*/
133133
public void ToggleVisible()
134134
{
135+
135136
window.setVisible(visible = !visible);
136137

137138
}
@@ -178,7 +179,6 @@ public static void CloseAll()
178179

179180
for (Window window: windows)
180181
{
181-
182182
window.GetFrame().setVisible(false); //you can't see me!
183183
window.GetFrame().dispose(); //Destroy the JFrame object
184184

-29 Bytes
Binary file not shown.
-172 Bytes
Binary file not shown.
-95 Bytes
Binary file not shown.
127 Bytes
Binary file not shown.
-128 Bytes
Binary file not shown.
127 Bytes
Binary file not shown.
-50 Bytes
Binary file not shown.
-125 Bytes
Binary file not shown.

target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst

+2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ C:\Users\Sergi\Development\GitHub\JTerm\src\main\java\jterm\Window.java
22
C:\Users\Sergi\Development\GitHub\JTerm\src\main\java\jterm\Echo.java
33
C:\Users\Sergi\Development\GitHub\JTerm\src\main\java\jterm\Server.java
44
C:\Users\Sergi\Development\GitHub\JTerm\src\main\java\jterm\Exec.java
5+
C:\Users\Sergi\Development\GitHub\JTerm\src\main\java\jterm\Ping.java
56
C:\Users\Sergi\Development\GitHub\JTerm\src\main\java\jterm\Client.java
67
C:\Users\Sergi\Development\GitHub\JTerm\src\main\java\jterm\Files.java
8+
C:\Users\Sergi\Development\GitHub\JTerm\src\main\java\jterm\Ps.java
79
C:\Users\Sergi\Development\GitHub\JTerm\src\main\java\jterm\Dir.java
810
C:\Users\Sergi\Development\GitHub\JTerm\src\main\java\jterm\JTerm.java

0 commit comments

Comments
 (0)