Skip to content

Commit cd786cf

Browse files
authored
Update document and version (#30)
1 parent 5bddf38 commit cd786cf

File tree

9 files changed

+24
-16
lines changed

9 files changed

+24
-16
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Change Log
2+
All notable changes to the "vscode-java-explorer" extension will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6+
7+
## 0.3.0 - 2018-05-14
8+
### Added
9+
- View Java source code in the flat package
10+
- View Java project dependencies, supporting Eclipse/Maven/Gradle
11+
- Create simple Java project

README.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22

33
[![Travis CI](https://travis-ci.org/Microsoft/vscode-java-explorer.svg?branch=master)](https://travis-ci.org/Microsoft/vscode-java-explorer)
44

5-
## Features
5+
## Overview
6+
7+
A lightweight extension to provide additional Java project explorer feature. It works with [Language Support for Java by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java) to provide the following features:
68

79
* Dependency viewer
8-
![viewer](https://raw.githubusercontent.com/yaohaizh/java-copilot/master/vscode/images/Dependency.gif)
10+
![viewer](https://raw.githubusercontent.com/Microsoft/vscode-java-explorer/master/images/project-dependency.gif)
911

10-
* Create Java Project
12+
* Create Simple Java Project
13+
![create project](https://raw.githubusercontent.com/Microsoft/vscode-java-explorer/master/images/create-project.gif)
1114

1215
## Requirements
1316

@@ -16,6 +19,7 @@
1619
- [Language Support for Java by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java) (version 0.14.0 or later)
1720

1821
## Contribution
22+
1923
### Build
2024
* Prerequirement
2125
- Node.js
@@ -25,18 +29,11 @@
2529
```
2630
npm install -g gulp
2731
npm install
28-
cd ./vscode
2932
gulp build_server
30-
3133
```
32-
33-
### Debug
34-
35-
34+
3635
## Release Note
3736

3837

3938
## Telemetry
4039
VS Code collects usage data and sends it to Microsoft to help improve our products and services. Read our [privacy statement](https://go.microsoft.com/fwlink/?LinkID=528096&clcid=0x409) to learn more. If you don't wish to send usage data to Microsoft, you can set the `telemetry.enableTelemetry` setting to `false`. Learn more in our [FAQ](https://code.visualstudio.com/docs/supporting/faq#_how-to-disable-telemetry-reporting).
41-
42-

images/Dependency.gif

-1.11 MB
Binary file not shown.

images/create-project.gif

1.05 MB
Loading

images/project-dependency.gif

728 KB
Loading

jdtls.ext/com.microsoft.jdtls.ext.core/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: JDTLS EXT Core
44
Bundle-SymbolicName: com.microsoft.jdtls.ext.core;singleton:=true
5-
Bundle-Version: 0.2.0
5+
Bundle-Version: 0.3.0
66
Bundle-Activator: com.microsoft.jdtls.ext.core.JdtlsExtActivator
77
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
88
Bundle-ActivationPolicy: lazy

jdtls.ext/com.microsoft.jdtls.ext.core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.microsoft.jdtls.ext</groupId>
77
<artifactId>jdtls-ext-parent</artifactId>
8-
<version>0.2.0</version>
8+
<version>0.3.0</version>
99
</parent>
1010
<artifactId>com.microsoft.jdtls.ext.core</artifactId>
1111
<packaging>eclipse-plugin</packaging>

jdtls.ext/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.microsoft.jdtls.ext</groupId>
55
<artifactId>jdtls-ext-parent</artifactId>
66
<name>${base.name} :: Parent</name>
7-
<version>0.2.0</version>
7+
<version>0.3.0</version>
88
<packaging>pom</packaging>
99
<properties>
1010
<base.name>Java Project Manager</base.name>

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-java-explorer",
33
"displayName": "Java Project Manager",
44
"description": "Manage Java Projects in VSCode",
5-
"version": "0.2.0",
5+
"version": "0.3.0",
66
"publisher": "vscjava",
77
"preview": true,
88
"aiKey": "5c642b22-e845-4400-badb-3f8509a70777",
@@ -28,7 +28,7 @@
2828
"main": "./out/src/extension",
2929
"contributes": {
3030
"javaExtensions": [
31-
"./server/com.microsoft.jdtls.ext.core-0.2.0.jar"
31+
"./server/com.microsoft.jdtls.ext.core-0.3.0.jar"
3232
],
3333
"commands": [
3434
{

0 commit comments

Comments
 (0)