You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wink.apache.org by ma...@apache.org on 2009/08/03 19:35:13 UTC

svn commit: r800473 - in /incubator/wink/trunk: pom.xml src/doc/DISCLAIMER src/doc/DISCLAIMER.txt src/doc/LICENSE src/doc/LICENSE.txt src/doc/NOTICE src/doc/NOTICE.txt wink-scripts/wink-dist/src.xml

Author: martins
Date: Mon Aug  3 17:35:13 2009
New Revision: 800473

URL: http://svn.apache.org/viewvc?rev=800473&view=rev
Log:
Bringing back ianal-maven-plugin - new configuration added (now it checks sources/binaries distribution archives)

Added:
    incubator/wink/trunk/src/doc/DISCLAIMER
      - copied unchanged from r800221, incubator/wink/trunk/src/doc/DISCLAIMER.txt
    incubator/wink/trunk/src/doc/LICENSE
      - copied unchanged from r800221, incubator/wink/trunk/src/doc/LICENSE.txt
    incubator/wink/trunk/src/doc/NOTICE
      - copied unchanged from r800221, incubator/wink/trunk/src/doc/NOTICE.txt
Removed:
    incubator/wink/trunk/src/doc/DISCLAIMER.txt
    incubator/wink/trunk/src/doc/LICENSE.txt
    incubator/wink/trunk/src/doc/NOTICE.txt
Modified:
    incubator/wink/trunk/pom.xml
    incubator/wink/trunk/wink-scripts/wink-dist/src.xml

Modified: incubator/wink/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/wink/trunk/pom.xml?rev=800473&r1=800472&r2=800473&view=diff
==============================================================================
--- incubator/wink/trunk/pom.xml (original)
+++ incubator/wink/trunk/pom.xml Mon Aug  3 17:35:13 2009
@@ -86,21 +86,27 @@
                     </execution>
                 </executions>
             </plugin>
-            <!-- plugin>
+            <plugin>
                 <groupId>org.codehaus.mojo</groupId>
                 <artifactId>ianal-maven-plugin</artifactId>
                 <executions>
                     <execution>
-                        <phase>validate</phase>
+                        <phase>verify</phase>
                         <goals>
                             <goal>verify-legal-files</goal>
                         </goals>
                         <configuration>
                             <strict>true</strict>
+                            <searchPaths>
+                                <searchPath>apache-wink-${project.version}</searchPath>
+                                <searchPath>apache-wink-${project.version}-src</searchPath>
+                                <searchPath>meta-inf</searchPath>
+                                <searchPath>META-INF</searchPath>
+                            </searchPaths>
                         </configuration>
                     </execution>
                 </executions>
-            </plugin-->
+            </plugin>
         </plugins>
 
         <pluginManagement>

Modified: incubator/wink/trunk/wink-scripts/wink-dist/src.xml
URL: http://svn.apache.org/viewvc/incubator/wink/trunk/wink-scripts/wink-dist/src.xml?rev=800473&r1=800472&r2=800473&view=diff
==============================================================================
--- incubator/wink/trunk/wink-scripts/wink-dist/src.xml (original)
+++ incubator/wink/trunk/wink-scripts/wink-dist/src.xml Mon Aug  3 17:35:13 2009
@@ -49,9 +49,9 @@
            <useDefaultExcludes>true</useDefaultExcludes>
            <outputDirectory>apache-wink-${project.version}-src</outputDirectory>
             <includes>
-                <include>DISCLAIMER.txt</include>
-                <include>LICENSE.txt</include>
-                <include>NOTICE.txt</include>
+                <include>DISCLAIMER</include>
+                <include>LICENSE</include>
+                <include>NOTICE</include>
             </includes>
         </fileSet>
     </fileSets>