diff --git a/api-webapp/pom.xml b/api-webapp/pom.xml
index 4a2589f..e0bd6cb 100644
--- a/api-webapp/pom.xml
+++ b/api-webapp/pom.xml
@@ -59,10 +59,11 @@
0
- 8085
+ ${pairgoth.api.host}
+ ${pairgoth.api.port}
- /api/
+ ${pairgoth.api.context}/
diff --git a/client.sh b/client.sh
index e88c906..c9801a1 100755
--- a/client.sh
+++ b/client.sh
@@ -6,5 +6,5 @@ CSSWATCH=$!
export MAVEN_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=*:5006"
#mvn --projects view-webapp -Dpairgoth.api.url=http://localhost:8085/api/ package jetty:run
-mvn -o --projects view-webapp package jetty:run
+mvn -DskipTests=true --projects view-webapp package jetty:run
kill $CSSWATCH
diff --git a/pom.xml b/pom.xml
index 30b6a76..7043b8d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -78,6 +78,39 @@
+
+
+ manual-properties
+
+
+ pairgoth.properties
+
+
+
+
+
+ org.codehaus.mojo
+ properties-maven-plugin
+ 1.2.0
+
+
+ initialize
+
+ read-project-properties
+
+
+
+ pairgoth.properties
+
+
+
+
+
+
+
+
+
+
UTF-8
11
@@ -109,6 +142,28 @@
official
10
true
+
+
+ dev
+ http
+ localhost
+ 8080
+ /
+ http://localhost:8080
+ http
+ localhost
+ 8085
+ /api
+ http://localhost:8085/api
+ file
+ tournamentfiles
+
+
+ 587
+
+
+ info
+ [%level] %ip [%logger] %message
diff --git a/server.sh b/server.sh
index c80e88b..eeccd40 100755
--- a/server.sh
+++ b/server.sh
@@ -1,4 +1,4 @@
#!/bin/bash
export MAVEN_OPTS="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=*:5005"
-mvn -DskipTests --projects api-webapp package jetty:run
+mvn -DskipTests=true --projects api-webapp package jetty:run
diff --git a/standalone.sh b/standalone.sh
index 0fd09f5..8571b14 100755
--- a/standalone.sh
+++ b/standalone.sh
@@ -3,4 +3,4 @@
# debug version
# mvn package && java -agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=*:5006 -jar application/target/pairgoth-engine.jar
-mvn -DskipTests package && java -jar application/target/pairgoth-engine.jar
+mvn -DskipTests=true package && java -jar application/target/pairgoth-engine.jar
diff --git a/view-webapp/pom.xml b/view-webapp/pom.xml
index b90c8f3..9ca66b0 100644
--- a/view-webapp/pom.xml
+++ b/view-webapp/pom.xml
@@ -99,12 +99,13 @@
1
- 8080
+ ${pairgoth.webapp.host}
+ ${pairgoth.webapp.port}
diff --git a/view-webapp/src/main/webapp/WEB-INF/pairgoth.default.properties b/view-webapp/src/main/webapp/WEB-INF/pairgoth.default.properties
index 959a8f5..63e2350 100644
--- a/view-webapp/src/main/webapp/WEB-INF/pairgoth.default.properties
+++ b/view-webapp/src/main/webapp/WEB-INF/pairgoth.default.properties
@@ -1,7 +1,19 @@
-# webapp
-webapp.env = dev
-webapp.url = https://localhost:8080
-api.url = https://localhost:8085/api
+# environment
+env = dev
+
+# webapp connector
+webapp.protocol = http
+webapp.interface = localhost
+webapp.port = 8080
+webapp.context = /
+webapp.external.url = http://localhost:8080
+
+# api connector
+api.protocol = http
+api.interface = localhost
+api.port = 8085
+api.context = /api
+api.external.url = http://localhost:8085/api
# store
store = file