Author: gawor
Date: Thu Jan 14 23:10:26 2010
New Revision: 899458

URL: http://svn.apache.org/viewvc?rev=899458&view=rev
Log:
fix formatting, add license header to pom, add svn properties

Modified:
    incubator/aries/trunk/web/pom.xml   (contents, props changed)
    incubator/aries/trunk/web/web-urlhandler/pom.xml   (contents, props changed)
    
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/WarToWabConverter.java
   (props changed)
    
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/impl/ClassPathBuilder.java
   (props changed)
    
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/impl/JSPImportParser.java
   (props changed)
    
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/impl/PackageFinder.java
   (props changed)
    
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/impl/WarToWabConverterImpl.java
   (props changed)
    
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/impl/WarToWabConverterService.java
   (props changed)
    
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/url/WARConnection.java
   (props changed)
    
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/url/WAR_URLServiceHandler.java
   (props changed)
    
incubator/aries/trunk/web/web-urlhandler/src/main/resources/OSGI-INF/blueprint/WARHandler.xml
   (props changed)
    
incubator/aries/trunk/web/web-urlhandler/src/test/java/org/apache/aries/web/converter/impl/JSPImportParserTest.java
   (props changed)
    
incubator/aries/trunk/web/web-urlhandler/src/test/java/org/apache/aries/web/converter/impl/WabConverterTest.java
   (props changed)

Modified: incubator/aries/trunk/web/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/aries/trunk/web/pom.xml?rev=899458&r1=899457&r2=899458&view=diff
==============================================================================
--- incubator/aries/trunk/web/pom.xml (original)
+++ incubator/aries/trunk/web/pom.xml Thu Jan 14 23:10:26 2010
@@ -1,31 +1,65 @@
-<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";>
-  <parent>
-    <artifactId>java5-parent</artifactId>
-    <groupId>org.apache.aries</groupId>
+<!--
+ 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";>
+    <parent>
+        <artifactId>java5-parent</artifactId>
+        <groupId>org.apache.aries</groupId>
+        <version>1.0.0-incubating-SNAPSHOT</version>
+    </parent>
+    
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.aries.web</groupId>
+    <artifactId>web</artifactId>
+    <packaging>pom</packaging>
+    <name>Apache Aries Web Component</name>
     <version>1.0.0-incubating-SNAPSHOT</version>
-  </parent>
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>org.apache.aries.web</groupId>
-  <artifactId>web</artifactId>
-  <packaging>pom</packaging>
-  <name>Apache Aries Web Component</name>
-  <version>1.0.0-incubating-SNAPSHOT</version>
-  <modules>
-       <module>web-urlhandler</module>
-  </modules>
-  <dependencyManagement>
-    <dependencies>
-         <dependency>
-        <groupId>org.osgi</groupId>
-        <artifactId>org.osgi.core</artifactId>
-        <version>4.2.0</version>
-      </dependency>
-      
-      <dependency>
-        <groupId>junit</groupId>
-        <artifactId>junit</artifactId>
-        <version>4.5</version>
-      </dependency>
-    </dependencies>
-  </dependencyManagement>
-</project>
\ No newline at end of file
+
+    <modules>
+        <module>web-urlhandler</module>
+    </modules>
+
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>org.osgi</groupId>
+                <artifactId>org.osgi.core</artifactId>
+                <version>4.2.0</version>
+            </dependency>
+
+            <dependency>
+                <groupId>junit</groupId>
+                <artifactId>junit</artifactId>
+                <version>4.5</version>
+            </dependency>
+
+            <dependency>
+                <groupId>asm</groupId>
+                <artifactId>asm-all</artifactId>
+                <version>3.1</version>
+            </dependency>
+
+            <dependency>
+                <groupId>org.apache.aries.testsupport</groupId>
+                <artifactId>org.apache.aries.testsupport.unit</artifactId>
+                <version>1.0.0-incubating-SNAPSHOT</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+</project>

Propchange: incubator/aries/trunk/web/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/aries/trunk/web/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: incubator/aries/trunk/web/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: incubator/aries/trunk/web/web-urlhandler/pom.xml
URL: 
http://svn.apache.org/viewvc/incubator/aries/trunk/web/web-urlhandler/pom.xml?rev=899458&r1=899457&r2=899458&view=diff
==============================================================================
--- incubator/aries/trunk/web/web-urlhandler/pom.xml (original)
+++ incubator/aries/trunk/web/web-urlhandler/pom.xml Thu Jan 14 23:10:26 2010
@@ -1,77 +1,74 @@
-
-       <!--
-               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>
-       <parent>
-               <artifactId>web</artifactId>
-               <groupId>org.apache.aries.web</groupId>
-               <version>1.0.0-incubating-SNAPSHOT</version>
-       </parent>
-       <modelVersion>4.0.0</modelVersion>
-
-       <artifactId>org.apache.aries.web.urlhandler</artifactId>
-       <packaging>bundle</packaging>
-       <name>Apache Aries Web Url handler</name>
-
-       <dependencies>
-               <dependency>
-                       <groupId>org.osgi</groupId>
-                       <artifactId>org.osgi.core</artifactId>
-                       <scope>provided</scope>
-               </dependency>
-               <dependency>
-                       <groupId>junit</groupId>
-                       <artifactId>junit</artifactId>
-                       <scope>provided</scope>
-               </dependency>
-               <dependency>
-                       <groupId>asm</groupId>
-                       <artifactId>asm-all</artifactId>
-                       <version>3.1</version>
-               </dependency>
-               <dependency>
-                       <groupId>org.apache.aries.testsupport</groupId>
-                       
<artifactId>org.apache.aries.testsupport.unit</artifactId>
-                       <version>1.0.0-incubating-SNAPSHOT</version>
-                       <scope>test</scope>
-               </dependency>
-       </dependencies>
-
-       <build>
-               <plugins>
-                       <plugin>
-                               <groupId>org.apache.felix</groupId>
-                               <artifactId>maven-bundle-plugin</artifactId>
-                               <extensions>true</extensions>
-                               <configuration>
-                                       <instructions>
-                                               
<Bundle-SymbolicName>${pom.groupId}.converters
-                                               </Bundle-SymbolicName>
-                                               
<Bundle-Activator>org.apache.aries.application.converters.Activator
-                                               </Bundle-Activator>
-                                               
<Export-Package>org.apache.aries.web.converter;version="${pom.version}",
-                                               </Export-Package>
-                                               
<_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))
-                                               </_versionpolicy>
-                                               
<_removeheaders>Ignore-Package,Include-Resource,Private-Package,Bundle-DocURL
-                                               </_removeheaders>
-                                       </instructions>
-                               </configuration>
-                       </plugin>
-               </plugins>
-       </build>
+    <parent>
+        <artifactId>web</artifactId>
+        <groupId>org.apache.aries.web</groupId>
+        <version>1.0.0-incubating-SNAPSHOT</version>
+    </parent>
+    <modelVersion>4.0.0</modelVersion>
+
+    <artifactId>org.apache.aries.web.urlhandler</artifactId>
+    <packaging>bundle</packaging>
+    <name>Apache Aries Web Url handler</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.core</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>asm</groupId>
+            <artifactId>asm-all</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.aries.testsupport</groupId>
+            <artifactId>org.apache.aries.testsupport.unit</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <instructions>
+                        
<Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+                        
<Bundle-Activator>org.apache.aries.application.converters.Activator</Bundle-Activator>
+                        <Export-Package>
+                            
org.apache.aries.web.converter;version="${pom.version}",
+                        </Export-Package>
+                        
<_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
+                        
<_removeheaders>Ignore-Package,Include-Resource,Private-Package,Bundle-DocURL</_removeheaders>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 
-</project>
\ No newline at end of file
+</project>

Propchange: incubator/aries/trunk/web/web-urlhandler/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/aries/trunk/web/web-urlhandler/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: incubator/aries/trunk/web/web-urlhandler/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/WarToWabConverter.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/WarToWabConverter.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/WarToWabConverter.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/impl/ClassPathBuilder.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/impl/ClassPathBuilder.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/impl/ClassPathBuilder.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/impl/JSPImportParser.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/impl/JSPImportParser.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/impl/JSPImportParser.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/impl/PackageFinder.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/impl/PackageFinder.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/impl/PackageFinder.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/impl/WarToWabConverterImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/impl/WarToWabConverterImpl.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/impl/WarToWabConverterImpl.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/impl/WarToWabConverterService.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/impl/WarToWabConverterService.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/converter/impl/WarToWabConverterService.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/url/WARConnection.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/url/WARConnection.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/url/WARConnection.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/url/WAR_URLServiceHandler.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/url/WAR_URLServiceHandler.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/java/org/apache/aries/web/url/WAR_URLServiceHandler.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/resources/OSGI-INF/blueprint/WARHandler.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/resources/OSGI-INF/blueprint/WARHandler.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/main/resources/OSGI-INF/blueprint/WARHandler.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/test/java/org/apache/aries/web/converter/impl/JSPImportParserTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/test/java/org/apache/aries/web/converter/impl/JSPImportParserTest.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/test/java/org/apache/aries/web/converter/impl/JSPImportParserTest.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/test/java/org/apache/aries/web/converter/impl/WabConverterTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/test/java/org/apache/aries/web/converter/impl/WabConverterTest.java
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: 
incubator/aries/trunk/web/web-urlhandler/src/test/java/org/apache/aries/web/converter/impl/WabConverterTest.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain


Reply via email to