diff --git a/ImageMetaManager/.gitignore b/ImageMetaManager/.gitignore new file mode 100644 index 0000000..e7f68bd --- /dev/null +++ b/ImageMetaManager/.gitignore @@ -0,0 +1,27 @@ +### Project files ### +/src/main/resources/application-pwd.yml + +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### VS Code ### +.vscode/ + + diff --git a/ImageMetaManager/pom.xml b/ImageMetaManager/pom.xml new file mode 100644 index 0000000..2500a96 --- /dev/null +++ b/ImageMetaManager/pom.xml @@ -0,0 +1,17 @@ + + + 4.0.0 + + ch.hftm + ImageMetaManager + 1.0-SNAPSHOT + + + 17 + 17 + UTF-8 + + + \ No newline at end of file diff --git a/ImageMetaManager/src/main/java/ch/hftm/Main.java b/ImageMetaManager/src/main/java/ch/hftm/Main.java new file mode 100644 index 0000000..019c3bf --- /dev/null +++ b/ImageMetaManager/src/main/java/ch/hftm/Main.java @@ -0,0 +1,7 @@ +package ch.hftm; + +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file