Skip to content

Commit

Permalink
Merge pull request #1 from joshua-lehmann/dev
Browse files Browse the repository at this point in the history
Added project template and documentation folder
  • Loading branch information
joshua-lehmann authored Dec 10, 2022
2 parents cab8ece + 01e0a74 commit 4a878b8
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 0 deletions.
Empty file added Documentation/requirements.md
Empty file.
27 changes: 27 additions & 0 deletions ImageMetaManager/.gitignore
Original file line number Diff line number Diff line change
@@ -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/


17 changes: 17 additions & 0 deletions ImageMetaManager/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
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>ch.hftm</groupId>
<artifactId>ImageMetaManager</artifactId>
<version>1.0-SNAPSHOT</version>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

</project>
7 changes: 7 additions & 0 deletions ImageMetaManager/src/main/java/ch/hftm/Main.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package ch.hftm;

public class Main {
public static void main(String[] args) {
System.out.println("Hello world!");
}
}

0 comments on commit 4a878b8

Please sign in to comment.