Repository: incubator-nifi Updated Branches: refs/heads/develop d68f71b12 -> 9033173eb
NIFI-271: - Adding a profile to disable rat check in development mode. Project: http://git-wip-us.apache.org/repos/asf/incubator-nifi/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-nifi/commit/8fa012c2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-nifi/tree/8fa012c2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-nifi/diff/8fa012c2 Branch: refs/heads/develop Commit: 8fa012c266657c0bfc55d1077b338fe201122594 Parents: dca93a5 Author: Matt Gilman <[email protected]> Authored: Fri Apr 24 17:24:33 2015 -0400 Committer: Matt Gilman <[email protected]> Committed: Fri Apr 24 17:24:33 2015 -0400 ---------------------------------------------------------------------- .../nifi-framework/nifi-web/nifi-web-ui/pom.xml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-nifi/blob/8fa012c2/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/pom.xml ---------------------------------------------------------------------- diff --git a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/pom.xml b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/pom.xml index d3af86e..bb90ab5 100644 --- a/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/pom.xml +++ b/nifi/nifi-nar-bundles/nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-ui/pom.xml @@ -216,6 +216,23 @@ </build> <profiles> <profile> + <id>dev</id> + <activation> + <activeByDefault>false</activeByDefault> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.apache.rat</groupId> + <artifactId>apache-rat-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> + </profile> + <profile> <id>minify-and-compress</id> <activation> <activeByDefault>true</activeByDefault>
