You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by as...@apache.org on 2014/02/24 18:54:06 UTC

git commit: [CXF-5578]: oauth sample: requires commons-logging dependency

Repository: cxf
Updated Branches:
  refs/heads/master f29557a3b -> 7c95984d4


[CXF-5578]: oauth sample: requires commons-logging dependency


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/7c95984d
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/7c95984d
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/7c95984d

Branch: refs/heads/master
Commit: 7c95984d4f8d92a6507d27335739a97a3b1130a2
Parents: f29557a
Author: Andrei Shakirin <an...@gmail.com>
Authored: Mon Feb 24 18:53:51 2014 +0100
Committer: Andrei Shakirin <an...@gmail.com>
Committed: Mon Feb 24 18:53:51 2014 +0100

----------------------------------------------------------------------
 distribution/src/main/release/samples/oauth/client/pom.xml | 5 +++++
 distribution/src/main/release/samples/oauth/server/pom.xml | 5 +++++
 2 files changed, 10 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/7c95984d/distribution/src/main/release/samples/oauth/client/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/src/main/release/samples/oauth/client/pom.xml b/distribution/src/main/release/samples/oauth/client/pom.xml
index 871d601..cb1df05 100644
--- a/distribution/src/main/release/samples/oauth/client/pom.xml
+++ b/distribution/src/main/release/samples/oauth/client/pom.xml
@@ -69,6 +69,11 @@
             <artifactId>spring-beans</artifactId>
         </dependency>
         <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>1.1.1</version>
+        </dependency>
+        <dependency>
             <groupId>net.oauth.core</groupId>
             <artifactId>oauth-consumer</artifactId>
             <version>20100527</version>

http://git-wip-us.apache.org/repos/asf/cxf/blob/7c95984d/distribution/src/main/release/samples/oauth/server/pom.xml
----------------------------------------------------------------------
diff --git a/distribution/src/main/release/samples/oauth/server/pom.xml b/distribution/src/main/release/samples/oauth/server/pom.xml
index fe1d7a3..bc93273 100644
--- a/distribution/src/main/release/samples/oauth/server/pom.xml
+++ b/distribution/src/main/release/samples/oauth/server/pom.xml
@@ -103,6 +103,11 @@
             <artifactId>spring-security-acl</artifactId>
         </dependency>
         <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>1.1.1</version>
+        </dependency>
+        <dependency>
             <groupId>javax.annotation</groupId>
             <artifactId>jsr250-api</artifactId>
             <version>1.0</version>