You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by co...@apache.org on 2020/02/17 10:58:54 UTC

[cxf-fediz] 02/03: add hsqldb dependencies for all profiles

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 2284c1de0b968e18cf0b38c8bec092ef014ecdcd
Author: wei <we...@126.com>
AuthorDate: Fri Feb 14 12:43:41 2020 +0800

    add hsqldb dependencies for all profiles
---
 services/idp/pom.xml | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/services/idp/pom.xml b/services/idp/pom.xml
index 43f3c66..79787c5 100644
--- a/services/idp/pom.xml
+++ b/services/idp/pom.xml
@@ -274,6 +274,13 @@
                 <jpa.url>jdbc:hsqldb:target/db/realma/myDB;shutdown=true</jpa.url>
                 <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>
@@ -321,6 +328,13 @@
                 <idp.https.port>12346</idp.https.port>
                 <realm>realm-b</realm>
             </properties>
+            <dependencies>
+                <dependency>
+                    <groupId>org.hsqldb</groupId>
+                    <artifactId>hsqldb</artifactId>
+                    <version>${hsqldb.version}</version>
+                </dependency>
+            </dependencies>
             <build>
                 <filters>
                     <filter>src/main/filters/realm-b/env.properties</filter>
@@ -347,6 +361,13 @@
             <properties>
                 <maven.test.skip>true</maven.test.skip>
             </properties>
+            <dependencies>
+                <dependency>
+                    <groupId>org.hsqldb</groupId>
+                    <artifactId>hsqldb</artifactId>
+                    <version>${hsqldb.version}</version>
+                </dependency>
+            </dependencies>
             <build>
                 <defaultGoal>jetty:run-war</defaultGoal>
             </build>