You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wink.apache.org by bl...@apache.org on 2009/07/14 16:51:59 UTC

svn commit: r793918 - in /incubator/wink/trunk: ./ src/site/resources/images/ wink-common/src/test/resources/org/apache/wink/common/internal/application/ wink-examples/ext/DynamicResource/src/site/apt/ wink-server/src/test/resources/org/apache/wink/ser...

Author: bluk
Date: Tue Jul 14 14:51:59 2009
New Revision: 793918

URL: http://svn.apache.org/viewvc?rev=793918&view=rev
Log:
More changes to license headers scanning.

Patch from Jason Dillon.  Note that this
changes license scanning to verify
phase.

See [WINK-75].

Added:
    incubator/wink/trunk/src/site/resources/images/white.jpg
      - copied, changed from r793896, incubator/wink/trunk/src/site/resources/images/white.JPG
Removed:
    incubator/wink/trunk/src/site/resources/images/white.JPG
Modified:
    incubator/wink/trunk/pom.xml
    incubator/wink/trunk/wink-common/src/test/resources/org/apache/wink/common/internal/application/custom.app
    incubator/wink/trunk/wink-examples/ext/DynamicResource/src/site/apt/index.apt
    incubator/wink/trunk/wink-server/src/test/resources/org/apache/wink/server/internal/application/custom.app

Modified: incubator/wink/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/wink/trunk/pom.xml?rev=793918&r1=793917&r2=793918&view=diff
==============================================================================
--- incubator/wink/trunk/pom.xml (original)
+++ incubator/wink/trunk/pom.xml Tue Jul 14 14:51:59 2009
@@ -70,26 +70,23 @@
                     <aggregate>true</aggregate>
                     <includes>
                         <include>**/src/**</include>
-                        <include>**/test/**</include>
                     </includes>
                     <excludes>
-                        <exclude>target/**</exclude>
-                        <exclude>**/*.app</exclude>
-                        <exclude>**/*.apt</exclude>
+                        <exclude>**/*.txt</exclude>
                         <exclude>**/*.docx</exclude>
                         <exclude>**/*.pdf</exclude>
-                        <exclude>**/*.JPG</exclude>
-                        <exclude>**/*.txt</exclude>
-                        <exclude>**/JSON*.java</exclude>
                         <exclude>javax.ws.rs.ext.RuntimeDelegate</exclude>
                     </excludes>
                     <useDefaultExcludes>true</useDefaultExcludes>
+                    <mapping>
+                        <app>SCRIPT_STYLE</app>
+                    </mapping>
                     <useDefaultMapping>true</useDefaultMapping>
                     <encoding>UTF-8</encoding>
                 </configuration>
                 <executions>
                     <execution>
-                        <phase>install</phase>
+                        <phase>verify</phase>
                         <goals>
                             <goal>check</goal>
                         </goals>

Copied: incubator/wink/trunk/src/site/resources/images/white.jpg (from r793896, incubator/wink/trunk/src/site/resources/images/white.JPG)
URL: http://svn.apache.org/viewvc/incubator/wink/trunk/src/site/resources/images/white.jpg?p2=incubator/wink/trunk/src/site/resources/images/white.jpg&p1=incubator/wink/trunk/src/site/resources/images/white.JPG&r1=793896&r2=793918&rev=793918&view=diff
==============================================================================
Binary files - no diff available.

Modified: incubator/wink/trunk/wink-common/src/test/resources/org/apache/wink/common/internal/application/custom.app
URL: http://svn.apache.org/viewvc/incubator/wink/trunk/wink-common/src/test/resources/org/apache/wink/common/internal/application/custom.app?rev=793918&r1=793917&r2=793918&view=diff
==============================================================================
--- incubator/wink/trunk/wink-common/src/test/resources/org/apache/wink/common/internal/application/custom.app (original)
+++ incubator/wink/trunk/wink-common/src/test/resources/org/apache/wink/common/internal/application/custom.app Tue Jul 14 14:51:59 2009
@@ -1,3 +1,22 @@
+##
+## 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.
+##
+
 #first line with comment
 
  # second line was blank and this is the third line

Modified: incubator/wink/trunk/wink-examples/ext/DynamicResource/src/site/apt/index.apt
URL: http://svn.apache.org/viewvc/incubator/wink/trunk/wink-examples/ext/DynamicResource/src/site/apt/index.apt?rev=793918&r1=793917&r2=793918&view=diff
==============================================================================
--- incubator/wink/trunk/wink-examples/ext/DynamicResource/src/site/apt/index.apt (original)
+++ incubator/wink/trunk/wink-examples/ext/DynamicResource/src/site/apt/index.apt Tue Jul 14 14:51:59 2009
@@ -2,7 +2,26 @@
  DynamicResource
  -----
  -----
- 
+
+~~
+~~ 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.
+~~
+
 DynamicResource
 
   This example is located under <<<examples/DynamicResource>>>

Modified: incubator/wink/trunk/wink-server/src/test/resources/org/apache/wink/server/internal/application/custom.app
URL: http://svn.apache.org/viewvc/incubator/wink/trunk/wink-server/src/test/resources/org/apache/wink/server/internal/application/custom.app?rev=793918&r1=793917&r2=793918&view=diff
==============================================================================
--- incubator/wink/trunk/wink-server/src/test/resources/org/apache/wink/server/internal/application/custom.app (original)
+++ incubator/wink/trunk/wink-server/src/test/resources/org/apache/wink/server/internal/application/custom.app Tue Jul 14 14:51:59 2009
@@ -1,3 +1,21 @@
+##
+## 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.
+##
 #first line with comment
 
  # second line was blank and this is the third line