You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oltu.apache.org by as...@apache.org on 2013/04/07 17:13:21 UTC

svn commit: r1465409 - in /oltu/trunk/oauth-2.0/jwt: ./ pom.xml src/ src/main/ src/test/

Author: asanso
Date: Sun Apr  7 15:13:21 2013
New Revision: 1465409

URL: http://svn.apache.org/r1465409
Log:
OLTU-78 - Implement Plaintext JWT :

* added JWT module as discussed in http://mail-archives.apache.org/mod_mbox/incubator-amber-dev/201301.mbox/%3C0C3514DC-CF41-4938-BD90-077B1A631ABA%40adobe.com%3E

Added:
    oltu/trunk/oauth-2.0/jwt/
    oltu/trunk/oauth-2.0/jwt/pom.xml
    oltu/trunk/oauth-2.0/jwt/src/
    oltu/trunk/oauth-2.0/jwt/src/main/
    oltu/trunk/oauth-2.0/jwt/src/test/

Added: oltu/trunk/oauth-2.0/jwt/pom.xml
URL: http://svn.apache.org/viewvc/oltu/trunk/oauth-2.0/jwt/pom.xml?rev=1465409&view=auto
==============================================================================
--- oltu/trunk/oauth-2.0/jwt/pom.xml (added)
+++ oltu/trunk/oauth-2.0/jwt/pom.xml Sun Apr  7 15:13:21 2013
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.oltu.oauth2</groupId>
+    <artifactId>org.apache.oltu.oauth2.parent</artifactId>
+    <version>0.31-SNAPSHOT</version>
+  </parent>
+
+  <artifactId>org.apache.oltu.oauth2.jwt</artifactId>
+
+  <name>Apache Oltu - OAuth 2.0 - JWT</name>
+  <description>OAuth 2.0 library - JWT</description>
+
+  <dependencies>
+  </dependencies>
+
+  <build>
+    <resources>
+      <resource>
+        <directory>${basedir}../../</directory>
+        <targetPath>META-INF</targetPath>
+        <includes>
+          <include>LICENSE</include>
+          <include>NOTICE</include>
+        </includes>
+      </resource>
+    </resources>
+
+    <plugins>
+    </plugins>
+  </build>
+
+</project>