Author: ptahchiev Date: Mon Mar 31 15:38:12 2008 New Revision: 643193 URL: http://svn.apache.org/viewvc?rev=643193&view=rev Log: Added the rat plugin and added headers for the assembly-bin and assembly-src files.
Modified: jakarta/cactus/trunk/cactus-bin-assembly.xml jakarta/cactus/trunk/cactus-site/src/site/xdoc/news.xml jakarta/cactus/trunk/cactus-src-assembly.xml jakarta/cactus/trunk/framework/framework-wrappers/pom.xml jakarta/cactus/trunk/pom.xml Modified: jakarta/cactus/trunk/cactus-bin-assembly.xml URL: http://svn.apache.org/viewvc/jakarta/cactus/trunk/cactus-bin-assembly.xml?rev=643193&r1=643192&r2=643193&view=diff ============================================================================== --- jakarta/cactus/trunk/cactus-bin-assembly.xml (original) +++ jakarta/cactus/trunk/cactus-bin-assembly.xml Mon Mar 31 15:38:12 2008 @@ -1,3 +1,22 @@ +<?xml version="1.0"?> +<!-- + 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. +--> <assembly> <id>bin</id> <formats> Modified: jakarta/cactus/trunk/cactus-site/src/site/xdoc/news.xml URL: http://svn.apache.org/viewvc/jakarta/cactus/trunk/cactus-site/src/site/xdoc/news.xml?rev=643193&r1=643192&r2=643193&view=diff ============================================================================== --- jakarta/cactus/trunk/cactus-site/src/site/xdoc/news.xml (original) +++ jakarta/cactus/trunk/cactus-site/src/site/xdoc/news.xml Mon Mar 31 15:38:12 2008 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> -<document id="news" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> +<document xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" id="news"> <properties> <title>Jakarta Cactus News</title> </properties> Modified: jakarta/cactus/trunk/cactus-src-assembly.xml URL: http://svn.apache.org/viewvc/jakarta/cactus/trunk/cactus-src-assembly.xml?rev=643193&r1=643192&r2=643193&view=diff ============================================================================== --- jakarta/cactus/trunk/cactus-src-assembly.xml (original) +++ jakarta/cactus/trunk/cactus-src-assembly.xml Mon Mar 31 15:38:12 2008 @@ -1,3 +1,22 @@ +<?xml version="1.0"?> +<!-- + 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. +--> <assembly> <id>src</id> <formats> Modified: jakarta/cactus/trunk/framework/framework-wrappers/pom.xml URL: http://svn.apache.org/viewvc/jakarta/cactus/trunk/framework/framework-wrappers/pom.xml?rev=643193&r1=643192&r2=643193&view=diff ============================================================================== --- jakarta/cactus/trunk/framework/framework-wrappers/pom.xml (original) +++ jakarta/cactus/trunk/framework/framework-wrappers/pom.xml Mon Mar 31 15:38:12 2008 @@ -40,6 +40,5 @@ <module>wrapper-javaEE-12</module> <module>wrapper-javaEE-13</module> <module>wrapper-javaEE-14</module> - <module>wrapper-javaEE-15</module> </modules> </project> Modified: jakarta/cactus/trunk/pom.xml URL: http://svn.apache.org/viewvc/jakarta/cactus/trunk/pom.xml?rev=643193&r1=643192&r2=643193&view=diff ============================================================================== --- jakarta/cactus/trunk/pom.xml (original) +++ jakarta/cactus/trunk/pom.xml Mon Mar 31 15:38:12 2008 @@ -17,7 +17,7 @@ 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> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.cactus</groupId> <artifactId>cactus</artifactId> @@ -466,6 +466,34 @@ <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>rat-maven-plugin</artifactId> + <version>1.0-alpha-3</version> + <executions> + <execution> + <phase>verify</phase> + <goals> + <goal>check</goal> + </goals> + </execution> + </executions> + <configuration> + <reportFile>${project.build.directory}/${project.build.finalName}.rat</reportFile> + <excludes> + <exclude>**/target/**/*</exclude> + <!--Exclude the scratchpad since it is not part of the official distribution. --> + <exclude>**/scratchpad/**/*</exclude> + <!--Exclude the descriptors since they are licenses themselves. --> + <exclude>**/descriptors/**/*</exclude> + + <exclude>ANNOUNCEMENT.txt</exclude> + <!-- Eclipse files --> + <exclude>**/.*</exclude> + <exclude>**/eclipse-classes/**/*</exclude> + </excludes> + </configuration> </plugin> </plugins> </pluginManagement> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]