master
Niclas Thobaben 2020-02-28 17:44:17 +01:00
commit 03318a14f4
2 changed files with 35 additions and 0 deletions

5
.gitignore vendored 100644
View File

@ -0,0 +1,5 @@
.DS_STORE
.classpath
.project
.settings/
target/

30
pom.xml 100644
View File

@ -0,0 +1,30 @@
<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>de.synolo</groupId>
<artifactId>app-qs</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>app-qs</name>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>de.synolo</groupId>
<artifactId>lib-fw</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
</dependencies>
</project>