From 426d872cf02e082bc233a38c8554b1acc306fa82 Mon Sep 17 00:00:00 2001 From: Yaohai Zheng Date: Fri, 22 Sep 2017 13:16:06 +0800 Subject: [PATCH] Update license. (#42) --- LICENSE.txt | 17 +++++++++++++++++ src/commands.ts | 3 +++ src/extension.ts | 3 +++ test/extension.test.ts | 3 +++ test/index.ts | 3 +++ 5 files changed, 29 insertions(+) create mode 100644 LICENSE.txt diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..3df0ee9 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,17 @@ +------------------------------------------ START OF LICENSE ----------------------------------------- + +vscode-java-debug + +Copyright (c) Microsoft Corporation + +All rights reserved. + +MIT License + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +----------------------------------------------- END OF LICENSE ------------------------------------------ diff --git a/src/commands.ts b/src/commands.ts index 7493889..8055969 100644 --- a/src/commands.ts +++ b/src/commands.ts @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. + export const VSCODE_STARTDEBUG = "vscode.startDebug"; export const VSCODE_ADD_DEBUGCONFIGURATION = "debug.addConfiguration"; diff --git a/src/extension.ts b/src/extension.ts index eafaad6..e68ba57 100644 --- a/src/extension.ts +++ b/src/extension.ts @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. + import * as path from "path"; import * as vscode from "vscode"; import * as commands from "./commands"; diff --git a/test/extension.test.ts b/test/extension.test.ts index d1c17ad..b64551f 100644 --- a/test/extension.test.ts +++ b/test/extension.test.ts @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. + // // Note: This example test is leveraging the Mocha test framework. // Please refer to their documentation on https://mochajs.org/ for help. diff --git a/test/index.ts b/test/index.ts index b6f2c15..b47e40e 100644 --- a/test/index.ts +++ b/test/index.ts @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT license. + // // PLEASE DO NOT MODIFY / DELETE UNLESS YOU KNOW WHAT YOU ARE DOING //