Adding appveyor.yml to the list of excluded items for RAT check.
Project: http://git-wip-us.apache.org/repos/asf/nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/nifi/commit/ebb94e68 Tree: http://git-wip-us.apache.org/repos/asf/nifi/tree/ebb94e68 Diff: http://git-wip-us.apache.org/repos/asf/nifi/diff/ebb94e68 Branch: refs/heads/NIFI-1654 Commit: ebb94e68f584efd7200f4c9e9e41235a03d9417e Parents: a419423 Author: Aldrin Piri <[email protected]> Authored: Mon Apr 11 15:10:51 2016 -0400 Committer: Aldrin Piri <[email protected]> Committed: Tue Apr 19 01:19:45 2016 -0400 ---------------------------------------------------------------------- pom.xml | 53 +++++++++++++++++++++++++++-------------------------- 1 file changed, 27 insertions(+), 26 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/nifi/blob/ebb94e68/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index e9a46da..4d0a805 100644 --- a/pom.xml +++ b/pom.xml @@ -1,13 +1,13 @@ <?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 +<!-- 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"> <modelVersion>4.0.0</modelVersion> @@ -103,7 +103,7 @@ language governing permissions and limitations under the License. --> <repositories> <repository> <id>central</id> - <!-- This should be at top, it makes maven try the central repo + <!-- This should be at top, it makes maven try the central repo first and then others and hence faster dep resolution --> <name>Maven Repository</name> <url>https://repo1.maven.org/maven2</url> @@ -296,8 +296,8 @@ language governing permissions and limitations under the License. --> <artifactId>quartz</artifactId> <version>2.2.1</version> <exclusions> - <!-- | Exclude the quartz 2.2.1 bundled version of c3p0 because it is - lgpl licensed | We also don't use the JDBC related features of quartz for + <!-- | Exclude the quartz 2.2.1 bundled version of c3p0 because it is + lgpl licensed | We also don't use the JDBC related features of quartz for which the dependency would matter --> <exclusion> <groupId>c3p0</groupId> @@ -367,7 +367,7 @@ language governing permissions and limitations under the License. --> <artifactId>spring-core</artifactId> <version>${spring.version}</version> <exclusions> - <!-- <artifactId>jcl-over-slf4j</artifactId> is used in dependencies + <!-- <artifactId>jcl-over-slf4j</artifactId> is used in dependencies section --> <exclusion> <groupId>commons-logging</groupId> @@ -765,7 +765,7 @@ language governing permissions and limitations under the License. --> <artifactId>zookeeper</artifactId> <version>3.4.6</version> </dependency> - + <!-- Test Dependencies for testing interactions with ZooKeeper --> <dependency> <groupId>org.apache.curator</groupId> @@ -779,7 +779,7 @@ language governing permissions and limitations under the License. --> <version>6.8.8</version> <scope>test</scope> </dependency> - <dependency> + <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.8.3</version> @@ -1453,7 +1453,7 @@ language governing permissions and limitations under the License. --> </module> <module name="OuterTypeFilename" /> <module name="LineLength"> - <!-- needs extra, because Eclipse formatter ignores the ending left + <!-- needs extra, because Eclipse formatter ignores the ending left brace --> <property name="max" value="200" /> <property name="ignorePattern" value="^package.*|^import.*|a href|href|http://|https://|ftp://" /> @@ -1523,6 +1523,7 @@ language governing permissions and limitations under the License. --> <exclude>nbactions.xml</exclude> <!-- courtesy excludes for netbeans users --> <exclude>DEPENDENCIES</exclude> <!-- auto generated file by apache's maven config while building sources.zip --> <exclude>.travis.yml</exclude> <!-- Travis CI Build Descriptor File --> + <exclude>appveyor.yml</exclude> <!-- AppVeyor CI Build Descriptor File --> </excludes> </configuration> <dependencies> @@ -1566,11 +1567,11 @@ language governing permissions and limitations under the License. --> </build> </profile> <profile> - <!-- Checks style and licensing requirements. This is a good idea to run - for contributions and for the release process. While it would be nice to - run always these plugins can considerably slow the build and have proven - to create unstable builds in our multi-module project and when building using - multiple threads. The stability issues seen with Checkstyle in multi-module + <!-- Checks style and licensing requirements. This is a good idea to run + for contributions and for the release process. While it would be nice to + run always these plugins can considerably slow the build and have proven + to create unstable builds in our multi-module project and when building using + multiple threads. The stability issues seen with Checkstyle in multi-module builds include false-positives and false negatives. --> <id>contrib-check</id> <build> @@ -1603,11 +1604,11 @@ language governing permissions and limitations under the License. --> </build> </profile> <profile> - <!-- This profile will disable DocLint which performs strict - JavaDoc processing which was introduced in JDK 8. These are technically errors - in the JavaDoc which we need to eventually address. However, if a release - is performed using JDK 8, the JavaDoc generation would fail. By activating - this profile when running on JDK 8 we can ensure the JavaDocs continue to + <!-- This profile will disable DocLint which performs strict + JavaDoc processing which was introduced in JDK 8. These are technically errors + in the JavaDoc which we need to eventually address. However, if a release + is performed using JDK 8, the JavaDoc generation would fail. By activating + this profile when running on JDK 8 we can ensure the JavaDocs continue to generate successfully --> <id>disable-doclint</id> <activation>
