Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .mvn/jvm.config
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-Xmx1024m -Xms512m -XX:MaxPermSize=256m
85 changes: 67 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -238,28 +238,77 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<!-- Overrides 0.11 from parent. Remove when parent catches up. -->
<version>0.12</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<consoleOutput>true</consoleOutput>
<excludes combine.children="append">
<!-- Exclude sandbox because not part of distribution: not in tgz, and not uploaded to maven-central -->
<exclude>sandbox/**</exclude>
<!-- Exclude release because not part of distribution: not in tgz, and not uploaded to maven-central -->
<exclude>release/**</exclude>
<exclude>README.md</exclude>
<exclude>.mvn/jvm.config</exclude>
<!-- git and IDE project files -->
<!-- see https://issues.apache.org/jira/browse/RAT-107 -->
<exclude>**/.git/**</exclude>
<exclude>**/.gitignore</exclude>
<exclude>**/.repository/**</exclude>
<exclude>**/.idea/**</exclude>
<exclude>**/*.iml</exclude>
<exclude>**/.classpath/**</exclude>
<exclude>**/.project</exclude>
<exclude>**/.settings/**</exclude>
<exclude>**/*.log</exclude>
<exclude>**/brooklyn*.log.*</exclude>
<exclude>**/target/**</exclude>
<!-- Exclude netbeans config files (not part of the project, but often on users' drives -->
<exclude>**/nbactions.xml</exclude>
<exclude>**/nb-configuration.xml</exclude>
<!-- files not requiring licence -->
<exclude>ignored/**</exclude>
<exclude>LICENSE.md</exclude>
<exclude>**/src/main/license/**</exclude>
<exclude>**/src/test/license/**</exclude>
<exclude>**/MANIFEST.MF</exclude>
<exclude>**/test-output/**</exclude>

<!-- JavaScript & CSS code that is not copyright of Apache Foundation. It is included in NOTICE. -->
<exclude>**/src/main/webapp/assets/js/libs/**</exclude>
<exclude>**/src/build/requirejs-maven-plugin/r.js</exclude>
<exclude>src/main/webapp/assets/js/util/code-complete/brooklyn-yaml-completion-proposals.js</exclude>
<exclude>src/main/webapp/assets/js/util/code-complete/js-yaml-parser.js</exclude>
<exclude>src/main/webapp/assets/css/codemirror.css</exclude>
<exclude>src/main/webapp/assets/css/easy-autocomplete.css</exclude>
<exclude>src/main/webapp/assets/css/show-hint.css</exclude>
<exclude>src/main/webapp/assets/images/Sorting icons.psd</exclude>
<!-- Downloaded if missing, binary - not included in the repo -->
<exclude>src/main/webapp/assets/img/zeroclipboard/ZeroClipboard.swf</exclude>

<exclude>src/test/resources/fixtures/*</exclude>

<!--
Copy of swagger-ui from https://github.com/swagger-api/swagger-ui tag::v2.1.3
-->
<exclude>**/src/main/webapp/assets/swagger-ui/**</exclude>
</excludes>
</configuration>
</plugin>
</plugins>

<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.rat</groupId>
<artifactId>apache-rat-plugin</artifactId>
<configuration>
<excludes combine.children="append">
<!--
JavaScript code that is not copyright of Apache Foundation. It is included in NOTICE.
-->
<exclude>**/src/main/webapp/assets/js/libs/*</exclude>
<exclude>**/src/build/requirejs-maven-plugin/r.js</exclude>

<!--
Copy of swagger-ui from https://github.com/swagger-api/swagger-ui tag::v2.1.3
-->
<exclude>**/src/main/webapp/assets/swagger-ui/**</exclude>
</excludes>
</configuration>
</plugin>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
<plugin>
<groupId>org.eclipse.m2e</groupId>
Expand Down
19 changes: 19 additions & 0 deletions src/main/webapp/logout_redirect.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,23 @@
<!DOCTYPE html>
<!--
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.
-->
<!-- Brooklyn SHA-1: GIT_SHA_1 -->
<html lang="en">
<head>
<meta charset="UTF-8">
Expand Down