This is an automated email from the ASF dual-hosted git repository. coheigea pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/cxf-fediz.git
commit 69b70dece23c66bec2e3d49b77099be054bd6768 Author: wei <[email protected]> AuthorDate: Sat Feb 8 21:58:02 2020 +0800 fix ClassNotFoundException org.hsql.jdbcDriver, when packaging with 'mvn clean install -Prealm-a' and running in tomcat container --- services/idp/pom.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/services/idp/pom.xml b/services/idp/pom.xml index 4a55f9c..43f3c66 100644 --- a/services/idp/pom.xml +++ b/services/idp/pom.xml @@ -287,6 +287,13 @@ <idp.https.port>9443</idp.https.port> <realm>realm-a</realm> </properties> + <dependencies> + <dependency> + <groupId>org.hsqldb</groupId> + <artifactId>hsqldb</artifactId> + <version>${hsqldb.version}</version> + </dependency> + </dependencies> <build> <filters> <filter>src/main/filters/realm-a/env.properties</filter>
