Author: olli
Date: Fri Apr  4 17:17:25 2014
New Revision: 1584830

URL: http://svn.apache.org/r1584830
Log:
cleanup, style

Modified:
    sling/whiteboard/olli/openidconnect/pom.xml

Modified: sling/whiteboard/olli/openidconnect/pom.xml
URL: 
http://svn.apache.org/viewvc/sling/whiteboard/olli/openidconnect/pom.xml?rev=1584830&r1=1584829&r2=1584830&view=diff
==============================================================================
--- sling/whiteboard/olli/openidconnect/pom.xml (original)
+++ sling/whiteboard/olli/openidconnect/pom.xml Fri Apr  4 17:17:25 2014
@@ -1,119 +1,125 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
+<?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.
+    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";>
+<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.sling</groupId>
+    <artifactId>sling</artifactId>
+    <version>19</version>
+    <relativePath>../../../parent/pom.xml</relativePath>
+  </parent>
+
+  <artifactId>org.apache.sling.auth.openidconnect</artifactId>
+  <version>0.0.1-SNAPSHOT</version>
+  <packaging>bundle</packaging>
+
+  <name>Apache Sling OpenID Connect Authentication</name>
+  <description>Bundle implementing OpenID Connect authentication with login 
and logout support</description>
+
+  <scm>
+    
<connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/whiteboard/olli/openidconnect/</connection>
+    
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/whiteboard/olli/openidconnect/</developerConnection>
+    
<url>http://svn.apache.org/viewvc/sling/trunk/whiteboard/olli/openidconnect/</url>
+  </scm>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-scr-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Import-Package>
+              *
+            </Import-Package>
+          </instructions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
+  <dependencies>
+    <!-- javax -->
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <!-- Sling -->
+    <dependency>
+      <groupId>org.apache.sling</groupId>
+      <artifactId>org.apache.sling.auth.core</artifactId>
+      <version>1.0.6</version>
+      <scope>provided</scope>
+    </dependency>
+    <!-- OSGi -->
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.core</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.osgi</groupId>
+      <artifactId>org.osgi.compendium</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <!-- Apache Oltu -->
+    <dependency>
+      <groupId>org.apache.oltu.oauth2</groupId>
+      <artifactId>org.apache.oltu.oauth2.client</artifactId>
+      <version>1.0.0</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.oltu.oauth2</groupId>
+      <artifactId>org.apache.oltu.oauth2.common</artifactId>
+      <version>1.0.0</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.oltu.openidconnect</groupId>
+      <artifactId>org.apache.oltu.openidconnect.client</artifactId>
+      <version>0.0.1-SNAPSHOT</version>
+    </dependency>
+    <!-- Apache Felix -->
+    <dependency>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.apache.felix.jaas</artifactId>
+      <version>0.0.2</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.apache.felix.scr.annotations</artifactId>
+      <scope>provided</scope>
+    </dependency>
+    <!-- logging -->
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <scope>provided</scope>
+    </dependency>
+  </dependencies>
 
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <groupId>org.apache.sling</groupId>
-        <artifactId>sling</artifactId>
-        <version>19</version>
-        <relativePath>../../../parent/pom.xml</relativePath>
-    </parent>
-
-    <artifactId>org.apache.sling.auth.openidconnect</artifactId>
-    <packaging>bundle</packaging>
-    <version>0.0.1-SNAPSHOT</version>
-
-    <name>Apache Sling OpenID Connect Authentication</name>
-    <description>
-        Bundle implementing OpenID Connect authentication with login and 
logout support
-    </description>
- 
-    <scm>
-        
<connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/bundles/auth/openidconnect</connection>
-        
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/bundles/auth/openidconnect</developerConnection>
-        
<url>http://svn.apache.org/viewvc/sling/trunk/bundles/auth/openidconnect</url>
-    </scm>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-scr-plugin</artifactId>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-bundle-plugin</artifactId>
-                <extensions>true</extensions>
-                <configuration>
-                    <instructions>
-                        <Import-Package>
-                               *
-                        </Import-Package>                        
-                    </instructions>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-  
-    <dependencies>
-       <dependency>
-            <groupId>org.apache.sling</groupId>
-            <artifactId>org.apache.sling.auth.core</artifactId>
-            <version>1.0.6</version>
-            <scope>provided</scope>
-        </dependency>
-                       <dependency>
-            <groupId>javax.servlet</groupId>
-            <artifactId>servlet-api</artifactId>
-        </dependency>
-               <dependency>
-            <groupId>org.slf4j</groupId>
-            <artifactId>slf4j-api</artifactId>
-        </dependency>
-               <dependency>
-            <groupId>org.apache.felix</groupId>
-            <artifactId>org.apache.felix.scr.annotations</artifactId>
-            <scope>provided</scope>
-        </dependency>
-       <dependency>
-            <groupId>org.osgi</groupId>
-            <artifactId>org.osgi.core</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.osgi</groupId>
-            <artifactId>org.osgi.compendium</artifactId>
-        </dependency>
-               <dependency>
-               <groupId>org.apache.oltu.oauth2</groupId>
-               <artifactId>org.apache.oltu.oauth2.client</artifactId>
-               <version>1.0.0</version>
-       </dependency>
-       <dependency>
-               <groupId>org.apache.oltu.oauth2</groupId>
-        <artifactId>org.apache.oltu.oauth2.common</artifactId>
-               <version>1.0.0</version>
-       </dependency>
-       
-       <dependency>
-               <groupId>org.apache.oltu.openidconnect</groupId>
-               <artifactId>org.apache.oltu.openidconnect.client</artifactId>
-               <version>0.0.1-SNAPSHOT</version>
-       </dependency>
-       
-       
-       <dependency>
-               <groupId>org.apache.felix</groupId>
-           <artifactId>org.apache.felix.jaas</artifactId>
-               <version>0.0.2</version>
-       </dependency>
-       
-    </dependencies>
 </project>


Reply via email to