From 802034c65a1785e2c4ad45829318be84dd90bb91 Mon Sep 17 00:00:00 2001 From: PawelSapula Date: Sun, 8 Feb 2026 14:15:27 +0100 Subject: [PATCH] Initial commit --- .gitignore | 38 ++++++++++ .idea/.gitignore | 3 + .idea/checkstyle-idea.xml | 15 ++++ .idea/encodings.xml | 7 ++ .idea/misc.xml | 14 ++++ .idea/vcs.xml | 6 ++ pom.xml | 86 ++++++++++++++++++++++ src/main/java/edu/ntnu/idi/idatt/Main.java | 11 +++ 8 files changed, 180 insertions(+) create mode 100644 .gitignore create mode 100644 .idea/.gitignore create mode 100644 .idea/checkstyle-idea.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/vcs.xml create mode 100644 pom.xml create mode 100644 src/main/java/edu/ntnu/idi/idatt/Main.java diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5ff6309 --- /dev/null +++ b/.gitignore @@ -0,0 +1,38 @@ +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### IntelliJ IDEA ### +.idea/modules.xml +.idea/jarRepositories.xml +.idea/compiler.xml +.idea/libraries/ +*.iws +*.iml +*.ipr + +### Eclipse ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ + +### Mac OS ### +.DS_Store \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/checkstyle-idea.xml b/.idea/checkstyle-idea.xml new file mode 100644 index 0000000..f41418f --- /dev/null +++ b/.idea/checkstyle-idea.xml @@ -0,0 +1,15 @@ + + + + 12.0.1 + JavaOnly + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..aa00ffa --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..cdf8ef1 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..6a4fffb --- /dev/null +++ b/pom.xml @@ -0,0 +1,86 @@ + + + 4.0.0 + + edu.ntnu.idi.idatt + Mappevurdering-IDATT2003 + 1.0-SNAPSHOT + + + 25 + 25 + UTF-8 + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.14.1 + + + + org.apache.maven.plugins + maven-surefire-plugin + 3.5.4 + + + + org.openjfx + javafx-maven-plugin + 0.0.8 + + + + org.apache.maven.plugins + maven-javadoc-plugin + 3.12.0 + + + + + + + + + + org.openjfx + javafx-controls + 25.0.1 + + + + org.codehaus.mojo + exec-maven-plugin + 3.6.3 + + edu.ntnu.idi.idatt.Main + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + + true + edu.ntnu.idi.idatt.Main + + + + + + + org.junit.jupiter + junit-jupiter + 6.0.1 + + + + + + \ No newline at end of file diff --git a/src/main/java/edu/ntnu/idi/idatt/Main.java b/src/main/java/edu/ntnu/idi/idatt/Main.java new file mode 100644 index 0000000..57408d3 --- /dev/null +++ b/src/main/java/edu/ntnu/idi/idatt/Main.java @@ -0,0 +1,11 @@ +package edu.ntnu.idi.idatt; + +public class Main { + + // Logger system !! + + static void main() { + System.out.println("Hello world!"); + } + +} \ No newline at end of file