Add required license changes. (#77)

This commit is contained in:
Yaohai Zheng 2017-09-30 14:46:17 +08:00 committed by GitHub
parent 5dcde3dde4
commit 50af48e23e
3 changed files with 31 additions and 3 deletions

View File

@ -61,10 +61,10 @@ Please also check the documentation of [Language Support for Java by Red Hat](ht
- `java.debug.logLevel`: minimum level of debugger logs that are sent to VS Code, defaults to `warn`.
## Feedback and Questions
You can find the full list of issues at [Issue Tracker](https://github.com/Microsoft/vscode-java-debug/issues). You can submit a [bug or feature suggestion](https://github.com/Microsoft/vscode-java-debug/issues/new), and participate community driven [![Gitter](https://badges.gitter.im/Microsoft/vscode-java-debug.svg)](https://gitter.im/Microsoft/vscode-java-debug)
Please share your feedback and ask questions to help us improve.
[![Gitter](https://badges.gitter.im/Microsoft/vscode-java-debug.svg)](https://gitter.im/Microsoft/vscode-java-debug)
## License
This extension is licensed under [MIT License](https://github.com/Microsoft/vscode-arduino/blob/master/LICENSE.txt).
## Data/Telemetry
Java Debug Extension for Visual Studio Code collects usage data and sends it to Microsoft to help improve our products and services. Read our [privacy statement](http://go.microsoft.com/fwlink/?LinkId=521839) to learn more. 

19
package-lock.json generated
View File

@ -38,6 +38,11 @@
"integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=",
"dev": true
},
"applicationinsights": {
"version": "0.18.0",
"resolved": "https://registry.npmjs.org/applicationinsights/-/applicationinsights-0.18.0.tgz",
"integrity": "sha1-Fi67SKODQIvE3kTbMrQXMH9Fu8E="
},
"archy": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz",
@ -3509,6 +3514,15 @@
}
}
},
"vscode-extension-telemetry": {
"version": "0.0.8",
"resolved": "https://registry.npmjs.org/vscode-extension-telemetry/-/vscode-extension-telemetry-0.0.8.tgz",
"integrity": "sha1-ImG/+Ya2aQpvH3RqRaxb0fhdKeA=",
"requires": {
"applicationinsights": "0.18.0",
"winreg": "1.2.3"
}
},
"which": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/which/-/which-1.3.0.tgz",
@ -3518,6 +3532,11 @@
"isexe": "2.0.0"
}
},
"winreg": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/winreg/-/winreg-1.2.3.tgz",
"integrity": "sha1-k60RayaW2ofVj3JlqPzqUlSpZdU="
},
"wrappy": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",

View File

@ -16,6 +16,15 @@
"engines": {
"vscode": "^1.15.0"
},
"license": "SEE LICENSE IN LICENSE.txt",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-java-debug.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-java-debug/issues"
},
"homepage": "https://github.com/Microsoft/vscode-java-debug/blob/master/README.md",
"categories": [
"Debuggers"
],