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
35 changes: 15 additions & 20 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,38 +1,33 @@
### IntelliJ IDEA ###
.idea/
out/
*.iml
.kotlin
HELP.md
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/

### Eclipse ###
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
bin/

### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr

### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/

### VS Code ###
.vscode/

### Gradle ###
.gradle/
build/

### Maven ###
target/

### Ant ###
/build/

### Mac OS ###
.DS_Store
10 changes: 0 additions & 10 deletions .idea/.gitignore

This file was deleted.

14 changes: 0 additions & 14 deletions .idea/misc.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

11 changes: 0 additions & 11 deletions Cyber Ecosystem.iml

This file was deleted.

10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
# Cyber-Ecosystem Simulation
# Git Demo

A server network simulation under malware attack with GUI visualization.

## Contributors
- Noah Erhart
- Rome Todd

CS 142 — Spring 2026
Test Repository to Help Teach basic Github functionality of branches, commits, Push/Merge functionalities, and GitHubCI testing with Maven.
51 changes: 0 additions & 51 deletions docs/design-v1.md

This file was deleted.

16 changes: 12 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,21 @@
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>cyber-ecosystem</groupId>
<artifactId>cyber-ecosystem</artifactId>
<groupId>com.github.romankh3</groupId>
<artifactId>maven-template-repository</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>Cyber Ecosystem</name>
<name>Maven Repository Template</name>

<url>https://github.com/template-repository/maven-template-repository</url>

<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>

<properties>
<mockito.version>2.26.0</mockito.version>
Expand Down Expand Up @@ -44,7 +53,6 @@
</dependencies>

<build>
<sourceDirectory>src</sourceDirectory>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
13 changes: 0 additions & 13 deletions src/base/ActiveAgent.java

This file was deleted.

17 changes: 0 additions & 17 deletions src/base/DataCell.java

This file was deleted.

33 changes: 0 additions & 33 deletions src/base/NetworkNode.java

This file was deleted.

20 changes: 20 additions & 0 deletions src/main/java/Greetings.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

/** Holds a list of greetings supplied by the class. */
public final class Greetings {

private static final List<String> MESSAGES = new ArrayList<>();
static {
MESSAGES.add("Hello from the teacher!");
// students add exactly one line each:
// MESSAGES.add("Hola — Alice P.");
MESSAGES.add("Hello-DarionP.");
}

/** Returns an unmodifiable view of the greetings list. */
public static List<String> all() {
return Collections.unmodifiableList(MESSAGES);
}
}
6 changes: 6 additions & 0 deletions src/main/java/Main.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
public class Main {
public static void main(String[] args) {
Greetings.all().forEach(System.out::println);
//test line to show commit
}
}
29 changes: 0 additions & 29 deletions src/models/AntivirusSentinel.java

This file was deleted.

31 changes: 0 additions & 31 deletions src/models/EncryptedVault.java

This file was deleted.

25 changes: 0 additions & 25 deletions src/models/MalwareStrain.java

This file was deleted.

Loading
Loading