update banner text to apache header text
Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/252b6207 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/252b6207 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/252b6207 Branch: refs/heads/develop Commit: 252b62079d0da89543a9f36267710386652eee26 Parents: 773744d Author: Dick Cavender <[email protected]> Authored: Fri Oct 23 11:06:33 2015 -0700 Committer: Dick Cavender <[email protected]> Committed: Fri Oct 23 11:06:33 2015 -0700 ---------------------------------------------------------------------- .../com/gemstone/gemfire/internal/Banner.java | 27 +++++++++++++------- 1 file changed, 18 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/252b6207/gemfire-core/src/main/java/com/gemstone/gemfire/internal/Banner.java ---------------------------------------------------------------------- diff --git a/gemfire-core/src/main/java/com/gemstone/gemfire/internal/Banner.java b/gemfire-core/src/main/java/com/gemstone/gemfire/internal/Banner.java index 3e89186..4b01e54 100644 --- a/gemfire-core/src/main/java/com/gemstone/gemfire/internal/Banner.java +++ b/gemfire-core/src/main/java/com/gemstone/gemfire/internal/Banner.java @@ -74,16 +74,25 @@ public class Banner { final String productName = GemFireVersion.getProductName(); out.println(SEPERATOR); - out.println(); - out.println(" Copyright (C) 1997-2015 Pivotal Software, Inc. All rights reserved. This"); - out.println(" product is protected by U.S. and international copyright and intellectual"); - out.println(" property laws. Pivotal products are covered by one or more patents listed"); - out.println(" at http://www.pivotal.io/patents. Pivotal is a registered trademark"); - out.println(" of trademark of Pivotal Software, Inc. in the United States and/or other"); - out.println(" jurisdictions. All other marks and names mentioned herein may be"); - out.println(" trademarks of their respective companies."); - out.println(); + out.println(" "); + out.println(" Licensed to the Apache Software Foundation (ASF) under one or more"); + out.println(" contributor license agreements. See the NOTICE file distributed with this"); + out.println(" work for additional information regarding copyright ownership."); + out.println(" "); + out.println(" The ASF licenses this file to You under the Apache License, Version 2.0"); + out.println(" (the \"License\"); you may not use this file except in compliance with the"); + out.println(" License. You may obtain a copy of the License at"); + out.println(" "); + out.println(" http://www.apache.org/licenses/LICENSE-2.0"); + out.println(" "); + out.println(" Unless required by applicable law or agreed to in writing, software"); + out.println(" distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT"); + out.println(" WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the"); + out.println(" License for the specific language governing permissions and limitations"); + out.println(" under the License."); + out.println(" "); + out.println(SEPERATOR); GemFireVersion.print(out);
