diff --git a/modules/testbed/src/dist/cfg/db.properties b/modules/testbed/src/dist/cfg/db.properties
new file mode 100644
index 0000000000..69cd7c5205
--- /dev/null
+++ b/modules/testbed/src/dist/cfg/db.properties
@@ -0,0 +1,26 @@
+#
+# jPOS Project [http://jpos.org]
+# Copyright (C) 2000-2012 Alejandro P. Revilla
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see .
+#
+
+hibernate.connection.username=sa
+hibernate.connection.password=
+# hibernate.hbm2ddl.auto=update
+#
+hibernate.connection.url=jdbc:h2:./data/jposee;LOCK_TIMEOUT=5000
+hibernate.connection.driver_class=org.h2.Driver
+hibernate.dialect=org.hibernate.dialect.H2Dialect
+#
diff --git a/modules/testbed/src/dist/cfg/logback.xml b/modules/testbed/src/dist/cfg/logback.xml
new file mode 100644
index 0000000000..c373642de9
--- /dev/null
+++ b/modules/testbed/src/dist/cfg/logback.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+ true
+
+
diff --git a/modules/testbed/src/dist/deploy/00_logger.xml b/modules/testbed/src/dist/deploy/00_logger.xml
new file mode 100644
index 0000000000..c81c997762
--- /dev/null
+++ b/modules/testbed/src/dist/deploy/00_logger.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/modules/testbed/src/dist/deploy/02_logback.xml b/modules/testbed/src/dist/deploy/02_logback.xml
new file mode 100644
index 0000000000..ea4a6c4764
--- /dev/null
+++ b/modules/testbed/src/dist/deploy/02_logback.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
diff --git a/modules/testbed/src/dist/deploy/90_testbed.xml b/modules/testbed/src/dist/deploy/90_testbed.xml
new file mode 100644
index 0000000000..9a59774613
--- /dev/null
+++ b/modules/testbed/src/dist/deploy/90_testbed.xml
@@ -0,0 +1,2 @@
+
+
diff --git a/modules/testbed/src/dist/deploy/99_sysmon.xml b/modules/testbed/src/dist/deploy/99_sysmon.xml
new file mode 100644
index 0000000000..44a96990ed
--- /dev/null
+++ b/modules/testbed/src/dist/deploy/99_sysmon.xml
@@ -0,0 +1,23 @@
+
+
+
+ 3600000
+ true
+
+
diff --git a/modules/testbed/src/main/java/org/jpos/testbed/Test.java b/modules/testbed/src/main/java/org/jpos/testbed/Test.java
new file mode 100644
index 0000000000..9e5752f94b
--- /dev/null
+++ b/modules/testbed/src/main/java/org/jpos/testbed/Test.java
@@ -0,0 +1,9 @@
+package org.jpos.testbed;
+
+import org.jpos.q2.QBeanSupport;
+
+public class Test extends QBeanSupport {
+ @Override
+ protected void startService() {
+ }
+}