diff --git a/pom.xml b/pom.xml
index f8ec295b..2cd1a5cc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -5,7 +5,7 @@
ch.ethz.seb
seb-server
- 0.0.1-SNAPSHOT
+ 0.1.0-SNAPSHOT
seb-server
web-service for SEB maintenance and monitoring active SEB sessions
diff --git a/src/main/java/ch/ethz/seb/sebserver/SEBServer.java b/src/main/java/ch/ethz/seb/sebserver/SEBServer.java
new file mode 100644
index 00000000..6f9c31ed
--- /dev/null
+++ b/src/main/java/ch/ethz/seb/sebserver/SEBServer.java
@@ -0,0 +1,24 @@
+/*
+ * Copyright (c) 2018 ETH Zürich, Educational Development and Technology (LET)
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+package ch.ethz.seb.sebserver;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.context.annotation.Configuration;
+
+@Configuration
+@SpringBootApplication
+public class SEBServer {
+
+ public static void main(final String[] args) {
+ org.apache.ibatis.logging.LogFactory.useSlf4jLogging();
+ SpringApplication.run(SEBServer.class, args);
+ }
+
+}
diff --git a/src/main/java/ch/ethz/seb/sebserver/ws/batis/JodaTimeTypeResolverTest.java b/src/test/java/ch/ethz/seb/sebserver/ws/batis/JodaTimeTypeResolverTest.java
similarity index 100%
rename from src/main/java/ch/ethz/seb/sebserver/ws/batis/JodaTimeTypeResolverTest.java
rename to src/test/java/ch/ethz/seb/sebserver/ws/batis/JodaTimeTypeResolverTest.java