commit a45d3c7789c6641205277818b0672e62a6f6b23f Author: JensBuehring Date: Thu Jan 15 16:29:48 2026 +0100 Erster Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..480bdf5 --- /dev/null +++ b/.gitignore @@ -0,0 +1,39 @@ +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ +.kotlin + +### 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..ab1f416 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,10 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Ignored default folder with query files +/queries/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml +# Editor-based HTTP Client requests +/httpRequests/ diff --git a/.idea/LNKD.tech Editor.xml b/.idea/LNKD.tech Editor.xml new file mode 100644 index 0000000..be44a97 --- /dev/null +++ b/.idea/LNKD.tech Editor.xml @@ -0,0 +1,178 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..39e689d --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..7ace097 --- /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..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/api-definition/pom.xml b/api-definition/pom.xml new file mode 100644 index 0000000..a6e1212 --- /dev/null +++ b/api-definition/pom.xml @@ -0,0 +1,21 @@ + + + 4.0.0 + + + com.kapdion.pisano + productknowledge-parent + 1.0-SNAPSHOT + + + api-definition + + + 21 + 21 + UTF-8 + + + \ No newline at end of file diff --git a/api-definition/src/main/java/com/kapdion/pisano/Main.java b/api-definition/src/main/java/com/kapdion/pisano/Main.java new file mode 100644 index 0000000..399c1ea --- /dev/null +++ b/api-definition/src/main/java/com/kapdion/pisano/Main.java @@ -0,0 +1,17 @@ +package com.kapdion.pisano; + +//TIP To Run code, press or +// click the icon in the gutter. +public class Main { + public static void main(String[] args) { + //TIP Press with your caret at the highlighted text + // to see how IntelliJ IDEA suggests fixing it. + System.out.printf("Hello and welcome!"); + + for (int i = 1; i <= 5; i++) { + //TIP Press to start debugging your code. We have set one breakpoint + // for you, but you can always add more by pressing . + System.out.println("i = " + i); + } + } +} \ No newline at end of file diff --git a/client-app/pom.xml b/client-app/pom.xml new file mode 100644 index 0000000..045e1f8 --- /dev/null +++ b/client-app/pom.xml @@ -0,0 +1,28 @@ + + + 4.0.0 + + com.kapdion.pisano + productknowledge-parent + 1.0-SNAPSHOT + + + client-app + + + 21 + 21 + UTF-8 + + + + + com.kapdion.pisano + client-lib + ${project.version} + + + + diff --git a/client-app/src/main/java/com/kapdion/pisano/Main.java b/client-app/src/main/java/com/kapdion/pisano/Main.java new file mode 100644 index 0000000..399c1ea --- /dev/null +++ b/client-app/src/main/java/com/kapdion/pisano/Main.java @@ -0,0 +1,17 @@ +package com.kapdion.pisano; + +//TIP To Run code, press or +// click the icon in the gutter. +public class Main { + public static void main(String[] args) { + //TIP Press with your caret at the highlighted text + // to see how IntelliJ IDEA suggests fixing it. + System.out.printf("Hello and welcome!"); + + for (int i = 1; i <= 5; i++) { + //TIP Press to start debugging your code. We have set one breakpoint + // for you, but you can always add more by pressing . + System.out.println("i = " + i); + } + } +} \ No newline at end of file diff --git a/client-lib/pom.xml b/client-lib/pom.xml new file mode 100644 index 0000000..eefe610 --- /dev/null +++ b/client-lib/pom.xml @@ -0,0 +1,27 @@ + + + 4.0.0 + + com.kapdion.pisano + productknowledge-parent + 1.0-SNAPSHOT + + + client-lib + + + 21 + 21 + UTF-8 + + + + + com.kapdion.pisano + api-definition + ${project.version} + + + \ No newline at end of file diff --git a/client-lib/src/main/java/com/kapdion/pisano/Main.java b/client-lib/src/main/java/com/kapdion/pisano/Main.java new file mode 100644 index 0000000..399c1ea --- /dev/null +++ b/client-lib/src/main/java/com/kapdion/pisano/Main.java @@ -0,0 +1,17 @@ +package com.kapdion.pisano; + +//TIP To Run code, press or +// click the icon in the gutter. +public class Main { + public static void main(String[] args) { + //TIP Press with your caret at the highlighted text + // to see how IntelliJ IDEA suggests fixing it. + System.out.printf("Hello and welcome!"); + + for (int i = 1; i <= 5; i++) { + //TIP Press to start debugging your code. We have set one breakpoint + // for you, but you can always add more by pressing . + System.out.println("i = " + i); + } + } +} \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..be25302 --- /dev/null +++ b/pom.xml @@ -0,0 +1,47 @@ + + + 4.0.0 + + com.kapdion.pisano + productknowledge-parent + 1.0-SNAPSHOT + + pom + Product Knowledge + A multi-module Maven project for testing module organization and dependency management. + + + api-definition + server-app + client-lib + client-app + web-frontend + + + + 21 + 21 + UTF-8 + + + + + + + org.springframework.boot + spring-boot-dependencies + 3.2.0 + pom + import + + + com.fasterxml.jackson.core + jackson-databind + 2.15.2 + + + + + diff --git a/server-app/pom.xml b/server-app/pom.xml new file mode 100644 index 0000000..23a43db --- /dev/null +++ b/server-app/pom.xml @@ -0,0 +1,28 @@ + + + 4.0.0 + + com.kapdion.pisano + productknowledge-parent + 1.0-SNAPSHOT + + + server-app + + + 21 + 21 + UTF-8 + + + + + com.kapdion.pisano + api-definition + ${project.version} + + + + diff --git a/server-app/src/main/java/com/kapdion/pisano/Main.java b/server-app/src/main/java/com/kapdion/pisano/Main.java new file mode 100644 index 0000000..399c1ea --- /dev/null +++ b/server-app/src/main/java/com/kapdion/pisano/Main.java @@ -0,0 +1,17 @@ +package com.kapdion.pisano; + +//TIP To Run code, press or +// click the icon in the gutter. +public class Main { + public static void main(String[] args) { + //TIP Press with your caret at the highlighted text + // to see how IntelliJ IDEA suggests fixing it. + System.out.printf("Hello and welcome!"); + + for (int i = 1; i <= 5; i++) { + //TIP Press to start debugging your code. We have set one breakpoint + // for you, but you can always add more by pressing . + System.out.println("i = " + i); + } + } +} \ No newline at end of file