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/04 14:10:28 UTC

svn commit: r951386 - in /cxf/sandbox/oauth_1.0a/rt/rs: ./ oauth/ oauth/pom.xml oauth/src/ oauth/src/main/ oauth/src/main/java/ oauth/src/test/ oauth/src/test/java/

Author: lmoren
Date: Fri Jun  4 12:10:28 2010
New Revision: 951386

URL: http://svn.apache.org/viewvc?rev=951386&view=rev
Log:
OAuth module initial commit

Added:
    cxf/sandbox/oauth_1.0a/rt/rs/
    cxf/sandbox/oauth_1.0a/rt/rs/oauth/
    cxf/sandbox/oauth_1.0a/rt/rs/oauth/pom.xml   (with props)
    cxf/sandbox/oauth_1.0a/rt/rs/oauth/src/
    cxf/sandbox/oauth_1.0a/rt/rs/oauth/src/main/
    cxf/sandbox/oauth_1.0a/rt/rs/oauth/src/main/java/
    cxf/sandbox/oauth_1.0a/rt/rs/oauth/src/test/
    cxf/sandbox/oauth_1.0a/rt/rs/oauth/src/test/java/

Added: 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=951386&view=auto
==============================================================================
--- cxf/sandbox/oauth_1.0a/rt/rs/oauth/pom.xml (added)
+++ cxf/sandbox/oauth_1.0a/rt/rs/oauth/pom.xml Fri Jun  4 12:10:28 2010
@@ -0,0 +1,37 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements. See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership. The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License. You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied. See the License for the
+  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">
+    <modelVersion>4.0.0</modelVersion>
+
+    <groupId>oauth</groupId>
+    <artifactId>oauth</artifactId>
+    <version>1.0a</version>
+    <packaging>jar</packaging>
+    <name>Apache CXF OAuth 1.0a</name>
+    <url>http://cxf.apache.org</url>
+
+    <parent>
+        <groupId>org.apache.cxf</groupId>
+        <artifactId>cxf-parent</artifactId>
+        <version>2.3.0-SNAPSHOT</version>
+        <relativePath>../../../parent/pom.xml</relativePath>
+    </parent>
+
+</project>
\ No newline at end of file

Propchange: cxf/sandbox/oauth_1.0a/rt/rs/oauth/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cxf/sandbox/oauth_1.0a/rt/rs/oauth/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: cxf/sandbox/oauth_1.0a/rt/rs/oauth/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml