summaryrefslogtreecommitdiffstats
path: root/gerrit-gwtdebug
diff options
context:
space:
mode:
authorShawn O. Pearce <sop@google.com>2009-11-12 08:15:18 -0800
committerShawn O. Pearce <sop@google.com>2009-11-12 08:15:18 -0800
commit765d076474628089566b446507edea02ccf0cca4 (patch)
treebecdcc2e63642b072e7bc37203e9f5e7dfff6622 /gerrit-gwtdebug
parent44837cf19cd2dc22c3dc7ff93d866567fb1e0c1b (diff)
Fix PostgreSQL/H2 access under gwtdebug sessions
Unfortunately my recent Maven refactoring series didn't quite work with the gwtdebug hosted mode debugging support project for gwtui. The project removes gerrit-pgm (and its contained Jetty) from the classpath but that was where we were getting our PostgreSQL JDBC driver from. We need to import the drivers directly in gwtdebug's own pom. Change-Id: Iccb284e8f26b1287771e0251dbf2772bbeb43428 Signed-off-by: Shawn O. Pearce <sop@google.com>
Diffstat (limited to 'gerrit-gwtdebug')
-rw-r--r--gerrit-gwtdebug/pom.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/gerrit-gwtdebug/pom.xml b/gerrit-gwtdebug/pom.xml
index e868c4e7d6..051600686b 100644
--- a/gerrit-gwtdebug/pom.xml
+++ b/gerrit-gwtdebug/pom.xml
@@ -56,6 +56,18 @@ limitations under the License.
</dependency>
<dependency>
+ <groupId>com.h2database</groupId>
+ <artifactId>h2</artifactId>
+ <scope>provided</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>postgresql</groupId>
+ <artifactId>postgresql</artifactId>
+ <scope>provided</scope>
+ </dependency>
+
+ <dependency>
<groupId>bouncycastle</groupId>
<artifactId>bcprov-jdk15</artifactId>
<version>140</version>