You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by lm...@apache.org on 2010/06/10 00:57:08 UTC

svn commit: r953181 - in /cxf/sandbox/oauth_1.0a/rt: pom.xml rs/oauth/pom.xml

Author: lmoren
Date: Wed Jun  9 22:57:08 2010
New Revision: 953181

URL: http://svn.apache.org/viewvc?rev=953181&view=rev
Log:
OAuth project configuration

Modified:
    cxf/sandbox/oauth_1.0a/rt/pom.xml
    cxf/sandbox/oauth_1.0a/rt/rs/oauth/pom.xml

Modified: cxf/sandbox/oauth_1.0a/rt/pom.xml
URL: http://svn.apache.org/viewvc/cxf/sandbox/oauth_1.0a/rt/pom.xml?rev=953181&r1=953180&r2=953181&view=diff
==============================================================================
--- cxf/sandbox/oauth_1.0a/rt/pom.xml (original)
+++ cxf/sandbox/oauth_1.0a/rt/pom.xml Wed Jun  9 22:57:08 2010
@@ -16,7 +16,8 @@
   specific language governing permissions and limitations
   under the License.
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.apache.cxf</groupId>
     <artifactId>cxf-rt</artifactId>
@@ -56,6 +57,7 @@
         <module>management</module>
         <module>management-web</module>
         <module>javascript</module>
+        <module>rs/oauth</module>
     </modules>
 
 </project>

Modified: cxf/sandbox/oauth_1.0a/rt/rs/oauth/pom.xml
URL: http://svn.apache.org/viewvc/cxf/sandbox/oauth_1.0a/rt/rs/oauth/pom.xml?rev=953181&r1=953180&r2=953181&view=diff
==============================================================================
--- cxf/sandbox/oauth_1.0a/rt/rs/oauth/pom.xml (original)
+++ cxf/sandbox/oauth_1.0a/rt/rs/oauth/pom.xml Wed Jun  9 22:57:08 2010
@@ -20,8 +20,8 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     <modelVersion>4.0.0</modelVersion>
 
-    <groupId>oauth</groupId>
-    <artifactId>oauth</artifactId>
+    <groupId>org.apache.cxf</groupId>
+    <artifactId>cxf-rt-rs-oauth</artifactId>
     <version>1.0a</version>
     <packaging>jar</packaging>
     <name>Apache CXF OAuth 1.0a</name>
@@ -34,4 +34,43 @@
         <relativePath>../../../parent/pom.xml</relativePath>
     </parent>
 
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.cxf</groupId>
+            <artifactId>cxf-rt-frontend-jaxrs</artifactId>
+            <version>2.3.0-SNAPSHOT</version>
+        </dependency>
+
+        <dependency>
+            <groupId>net.oauth.core</groupId>
+            <artifactId>oauth</artifactId>
+            <version>20100527</version>
+        </dependency>
+        <dependency>
+            <groupId>net.oauth.core</groupId>
+            <artifactId>oauth-consumer</artifactId>
+            <version>20100527</version>
+        </dependency>
+        <dependency>
+            <groupId>net.oauth.core</groupId>
+            <artifactId>oauth-provider</artifactId>
+            <version>20100527</version>
+        </dependency>
+
+        <!--test dependencies-->
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+    <repositories>
+        <repository>
+            <id>oauth</id>
+            <name>OAuth Repository</name>
+            <url>http://oauth.googlecode.com/svn/code/maven</url>
+        </repository>
+    </repositories>
+
 </project>
\ No newline at end of file