Author: gtrasuk
Date: Fri Dec 12 05:48:57 2014
New Revision: 1644835
URL: http://svn.apache.org/r1644835
Log:
Parent pom now includes 'pmd', 'findbugs' and 'RAT' reports.
All pass without incident (although the pmd and findbugs reports show warnings).
Modified:
river/river-rt-tools/trunk/pom.xml
river/river-rt-tools/trunk/src/site/markdown/index.md
Modified: river/river-rt-tools/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/river/river-rt-tools/trunk/pom.xml?rev=1644835&r1=1644834&r2=1644835&view=diff
==============================================================================
--- river/river-rt-tools/trunk/pom.xml (original)
+++ river/river-rt-tools/trunk/pom.xml Fri Dec 12 05:48:57 2014
@@ -1,34 +1,72 @@
<?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.
+
+-->
<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>
- <groupId>org.apache.river.tools.rt</groupId>
- <artifactId>river-rt-tools</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>river-rt-tools</name>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.apache.river.tools.rt</groupId>
+ <artifactId>river-rt-tools</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <name>river-rt-tools</name>
- <dependencyManagement>
+ <dependencyManagement>
- </dependencyManagement>
+ </dependencyManagement>
- <modules>
- <module>start</module>
- <module>tools</module>
- </modules>
+ <modules>
+ <module>start</module>
+ <module>tools</module>
+ </modules>
- <reporting>
- <plugins>
- <plugin>
+ <reporting>
+ <plugins>
+ <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.10.1</version>
- <configuration>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>2.10.1</version>
+ <configuration>
- <aggregate>true</aggregate>
+ <aggregate>true</aggregate>
- </configuration>
- </plugin>
- </plugins>
- </reporting>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-pmd-plugin</artifactId>
+ <version>3.3</version>
+ <configuration>
+ <sourceEncoding>utf-8</sourceEncoding>
+ <minimumTokens>100</minimumTokens>
+ <targetJdk>1.5</targetJdk>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>findbugs-maven-plugin</artifactId>
+ <version>3.0.0</version>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.rat</groupId>
+ <artifactId>apache-rat-plugin</artifactId>
+ <version>0.11</version>
+ </plugin>
+ </plugins>
+ </reporting>
</project>
\ No newline at end of file
Modified: river/river-rt-tools/trunk/src/site/markdown/index.md
URL:
http://svn.apache.org/viewvc/river/river-rt-tools/trunk/src/site/markdown/index.md?rev=1644835&r1=1644834&r2=1644835&view=diff
==============================================================================
--- river/river-rt-tools/trunk/src/site/markdown/index.md (original)
+++ river/river-rt-tools/trunk/src/site/markdown/index.md Fri Dec 12 05:48:57
2014
@@ -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.
+
+-->
Run-time Tools for Apache River
===============================