Added more licenses; mvn -Prat -DskipTests passes Note two exclusions were added to apache-rat-plugin:
- dependency-reduced-pom.xml (this is generated) - d3.min.js (BSD licensed, but rat did not pick up, license is in file) Project: http://git-wip-us.apache.org/repos/asf/helix/repo Commit: http://git-wip-us.apache.org/repos/asf/helix/commit/8d552070 Tree: http://git-wip-us.apache.org/repos/asf/helix/tree/8d552070 Diff: http://git-wip-us.apache.org/repos/asf/helix/diff/8d552070 Branch: refs/heads/master Commit: 8d55207021e338a4d45f52f1b6d877a8e0d57cab Parents: 7c36bc7 Author: Greg Brandt <[email protected]> Authored: Sat Mar 28 14:12:34 2015 -0700 Committer: Greg Brandt <[email protected]> Committed: Sat Mar 28 14:12:34 2015 -0700 ---------------------------------------------------------------------- helix-ui/pom.xml | 2 +- helix-ui/sample-admin-server.yml | 17 +++++++++++ helix-ui/sample-server.yml | 17 +++++++++++ helix-ui/src/main/resources/assets/css/app.css | 19 ++++++++++++ .../assets/css/uikit.almost-flat.min.css | 11 ++++++- helix-ui/src/main/resources/assets/js/admin.js | 19 ++++++++++++ helix-ui/src/main/resources/assets/js/app.js | 19 ++++++++++++ .../assets/js/components/accordion.min.js | 2 -- .../assets/js/components/autocomplete.min.js | 2 -- .../resources/assets/js/components/cover.min.js | 2 -- .../assets/js/components/datepicker.min.js | 3 -- .../assets/js/components/form-password.min.js | 2 -- .../assets/js/components/form-select.min.js | 2 -- .../resources/assets/js/components/grid.min.js | 2 -- .../assets/js/components/htmleditor.min.js | 2 -- .../assets/js/components/lightbox.min.js | 2 -- .../assets/js/components/nestable.min.js | 2 -- .../assets/js/components/notify.min.js | 2 -- .../assets/js/components/pagination.min.js | 2 -- .../assets/js/components/search.min.js | 2 -- .../assets/js/components/slideshow-fx.min.js | 2 -- .../assets/js/components/slideshow.min.js | 2 -- .../assets/js/components/sortable.min.js | 2 -- .../assets/js/components/sticky.min.js | 2 -- .../assets/js/components/timepicker.min.js | 2 -- .../assets/js/components/upload.min.js | 2 -- helix-ui/src/main/resources/assets/js/d3.min.js | 31 +++++++++++++++++++- .../resources/assets/js/jquery-1.11.2.min.js | 13 ++++++++ .../main/resources/assets/js/landing-view.js | 21 ++++++++++++- .../resources/assets/js/resource-state-table.js | 21 ++++++++++++- .../main/resources/assets/js/resource-table.js | 19 ++++++++++++ .../src/main/resources/assets/js/uikit.min.js | 11 ++++++- .../src/main/resources/assets/js/visualizer.js | 19 ++++++++++++ .../org/apache/helix/ui/view/cluster-view.ftl | 18 ++++++++++++ .../helix/ui/view/common/cluster-admin.ftl | 18 ++++++++++++ .../helix/ui/view/common/config-table.ftl | 18 ++++++++++++ .../org/apache/helix/ui/view/common/css.ftl | 18 ++++++++++++ .../helix/ui/view/common/ideal-state-table.ftl | 18 ++++++++++++ .../helix/ui/view/common/instance-admin.ftl | 18 ++++++++++++ .../helix/ui/view/common/instance-table.ftl | 18 ++++++++++++ .../org/apache/helix/ui/view/common/js.ftl | 18 ++++++++++++ .../helix/ui/view/common/resource-admin.ftl | 18 ++++++++++++ .../ui/view/common/resource-state-table.ftl | 18 ++++++++++++ .../helix/ui/view/common/resource-table.ftl | 18 ++++++++++++ .../ui/view/common/resource-visualizer.ftl | 18 ++++++++++++ .../apache/helix/ui/view/common/side-nav.ftl | 18 ++++++++++++ .../org/apache/helix/ui/view/landing-view.ftl | 18 ++++++++++++ .../org/apache/helix/ui/view/resource-view.ftl | 18 ++++++++++++ pom.xml | 2 ++ 49 files changed, 505 insertions(+), 45 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/helix/blob/8d552070/helix-ui/pom.xml ---------------------------------------------------------------------- diff --git a/helix-ui/pom.xml b/helix-ui/pom.xml index c200cb2..758ec23 100644 --- a/helix-ui/pom.xml +++ b/helix-ui/pom.xml @@ -82,7 +82,7 @@ under the License. <artifactId>maven-shade-plugin</artifactId> <version>2.3</version> <configuration> - <createDependencyReducedPom>true</createDependencyReducedPom> + <createDependencyReducedPom>false</createDependencyReducedPom> <filters> <filter> <artifact>*:*</artifact> http://git-wip-us.apache.org/repos/asf/helix/blob/8d552070/helix-ui/sample-admin-server.yml ---------------------------------------------------------------------- diff --git a/helix-ui/sample-admin-server.yml b/helix-ui/sample-admin-server.yml index cd4b924..f249953 100644 --- a/helix-ui/sample-admin-server.yml +++ b/helix-ui/sample-admin-server.yml @@ -1,3 +1,20 @@ +# 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. + adminMode: true zkAddresses: http://git-wip-us.apache.org/repos/asf/helix/blob/8d552070/helix-ui/sample-server.yml ---------------------------------------------------------------------- diff --git a/helix-ui/sample-server.yml b/helix-ui/sample-server.yml index 5ee5933..a565cdb 100644 --- a/helix-ui/sample-server.yml +++ b/helix-ui/sample-server.yml @@ -1,3 +1,20 @@ +# 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. + server: applicationConnectors: - type: http http://git-wip-us.apache.org/repos/asf/helix/blob/8d552070/helix-ui/src/main/resources/assets/css/app.css ---------------------------------------------------------------------- diff --git a/helix-ui/src/main/resources/assets/css/app.css b/helix-ui/src/main/resources/assets/css/app.css index 165941a..0a8f623 100644 --- a/helix-ui/src/main/resources/assets/css/app.css +++ b/helix-ui/src/main/resources/assets/css/app.css @@ -1,3 +1,22 @@ +/* + * 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. + */ + /* all */ .table-button {
