Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update readmes to provide successful build instructions #2405

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,12 @@ To build project you need to install npm and maven.
Checkout source code:
$ git clone https://github.com/eclipse/che-che4z-lsp-for-cobol.git

To build server run:
To build both the server and client extension run the following from project root:

```$ cd server && mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent verify test-compile```
```$ ./BUILD.sh```

To build extension run:

```$ cd clients/cobol-lsp-vscode-extension && npm install && npm run compile```

You need to change the run configuration in your IDE to enable logging to the console while debugging the Java part.
Add `-Dlogback.configurationFile=server/localDev/logback.xml` to your `VM options` parameter.
You need to change the run configuration in your IDE to enable logging to the console while debugging the Java part.
Add `-Dlogback.configurationFile=server/localDev/logback.xml` to your `VM options` parameter.
The value can be `localDev/logback.xml` if the `server` folder is a root folder for your project.

## Start contributing
Expand Down
Loading