diff --git a/pom.xml b/pom.xml
index 962f5ab6f79a1f36109e2c838b8c21c88125ffa9..e0fed22a79e48ec8c3339be2ea16f66717c167ab 100644
--- a/pom.xml
+++ b/pom.xml
@@ -21,4 +21,34 @@
         </dependency>
     </dependencies>
 
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>exec-maven-plugin</artifactId>
+        <version>1.6.0</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>java</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <mainClass>ch.hepia.App</mainClass>
+        </configuration>
+      </plugin>
+      <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-surefire-plugin</artifactId>
+          <version>2.22.0</version>
+          <configuration>
+            <excludes>
+              <exclude>some test to exclude here</exclude>
+            </excludes>
+          </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
 </project>
\ No newline at end of file