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:52 UTC

[cxf-fediz] branch master updated (90ab4aa -> e717003)

This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/cxf-fediz.git.


    from 90ab4aa  Updating parent pom version
     new 69b70de  fix ClassNotFoundException org.hsql.jdbcDriver, when packaging with 'mvn clean install -Prealm-a' and running in tomcat container
     new 2284c1d  add hsqldb dependencies for all profiles
     new e717003  remove hsqldb dependency from default profile

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 services/idp/pom.xml | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)


[cxf-fediz] 01/03: fix ClassNotFoundException org.hsql.jdbcDriver, when packaging with 'mvn clean install -Prealm-a' and running in tomcat container

Posted by co...@apache.org.
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 <we...@126.com>
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>


[cxf-fediz] 03/03: remove hsqldb dependency from default profile

Posted by co...@apache.org.
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 e7170038e1eceeff07a21210034fb533d68682f6
Author: wei <we...@126.com>
AuthorDate: Mon Feb 17 16:43:17 2020 +0800

    remove hsqldb dependency from default profile
---
 services/idp/pom.xml | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/services/idp/pom.xml b/services/idp/pom.xml
index 79787c5..839687b 100644
--- a/services/idp/pom.xml
+++ b/services/idp/pom.xml
@@ -274,13 +274,6 @@
                 <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>


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

Posted by co...@apache.org.
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>