Pruned unused stuff

This commit is contained in:
Imbus 2024-02-08 14:37:06 +01:00
parent 9cb6ce21ef
commit 6c8744d5aa
19 changed files with 5 additions and 34 deletions

6
.gitignore vendored
View file

@ -2,6 +2,10 @@ target
tomcat.8080
tomcat.5000
# Gradle generated files
.gradle
build/
# IntelliJ Idea project files
.idea
*.iml
@ -24,4 +28,4 @@ buildNumber.properties
# JDT-specific (Eclipse Java Development Tools)
.classpath
.DS_Store
.DS_Store

Binary file not shown.

View file

@ -1,2 +0,0 @@
#Thu Feb 08 14:24:23 CET 2024
gradle.version=8.4

Binary file not shown.

View file

@ -1,14 +0,0 @@
/*
* This Java source file was generated by the Gradle 'init' task.
*/
package etsf20;
public class App {
public String getGreeting() {
return "Hello World!";
}
public static void main(String[] args) {
System.out.println(new App().getGreeting());
}
}

View file

@ -1,17 +0,0 @@
/*
* This Java source file was generated by the Gradle 'init' task.
*/
package etsf20;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
import org.junit.jupiter.api.Disabled;
class AppTest {
@Disabled
@Test void appHasAGreeting() {
App classUnderTest = new App();
assertNotNull(classUnderTest.getGreeting(), "app should have a greeting");
}
}