Skip to content

Commit 38c2322

Browse files
authored
Merge pull request #1 from Microsoft/yaohai_dev
Add initial pack.
2 parents 730b62b + 4431105 commit 38c2322

File tree

4 files changed

+36
-10
lines changed

4 files changed

+36
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
0.1.0
2+
3+
initial release

README.md

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
1+
# Java Extension Pack
12

2-
# Contributing
3+
These are some of extensions to make Java development easier and fun.
34

4-
This project welcomes contributions and suggestions. Most contributions require you to agree to a
5-
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
6-
the rights to use your contribution. For details, visit https://cla.microsoft.com.
5+
## Extensions Included
76

8-
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide
9-
a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions
10-
provided by the bot. You will only need to do this once across all repos using our CLA.
7+
* [Language Support for Java(TM) by Red Hat ](https://marketplace.visualstudio.com/items?itemName=redhat.java) - Provides Java ™ language support via Eclipse ™ JDT Language Server, which utilizes Eclipse ™ JDT, M2Eclipse and Buildship.
8+
* [Java Debug Extension for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=vscjava.vscode-java-debug) - Provide debug support for Java.
119

12-
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
13-
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
14-
contact [[email protected]](mailto:[email protected]) with any additional questions or comments.
10+
**Enjoy!**

logo.png

15.1 KB
Loading

package.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "vscode-java-pack",
3+
"displayName": "Java Extension Pack",
4+
"description": "Popular VS Code extensions for Java development.",
5+
"version": "0.1.0",
6+
"publisher": "vscjava",
7+
"preview": true,
8+
"engines": {
9+
"vscode": "^1.15.0"
10+
},
11+
"icon": "logo.png",
12+
"galleryBanner": {
13+
"color": "#333333",
14+
"theme": "dark"
15+
},
16+
"keywords": [
17+
"java",
18+
"debugger"
19+
],
20+
"categories": [
21+
"Extension Packs"
22+
],
23+
"extensionDependencies": [
24+
"redhat.vscode-java",
25+
"vscjava.vscode-java-debug"
26+
]
27+
}

0 commit comments

Comments
 (0)