Skip to content

Commit 3509d14

Browse files
committed
Added VS Code recommended workspace extensions and mvn verify / test tasks
1 parent c45c152 commit 3509d14

File tree

5 files changed

+37
-4
lines changed

5 files changed

+37
-4
lines changed

Diff for: .vscode/extensions.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"recommendations": [
3+
"vscjava.vscode-java-pack",
4+
"redhat.fabric8-analytics"
5+
]
6+
}

Diff for: .vscode/settings.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"telemetry.enableTelemetry": false,
3+
"cSpell.words": [
4+
"Appender"
5+
]
6+
}

Diff for: .vscode/tasks.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "verify",
8+
"type": "shell",
9+
"command": "mvn -B verify",
10+
"group": "build"
11+
},
12+
{
13+
"label": "test",
14+
"type": "shell",
15+
"command": "mvn -B test",
16+
"group": "test"
17+
}
18+
]
19+
}

Diff for: CONTRIBUTING.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
# Contributing
2+
13
1. Use `google-java-format` for code formatting.
24
2. Use wrapper classes instead of primitives. For example, use `Integer` in place of `int`. It helps us in distinguishing, when a value is not set.
35
3. Use `@Builder` based object construction instead of `new`.
46
4. Using `lombok` annotations for any new classes.
5-
5. All hardcoded constants appear as a `private static final` variables at the top of the class.
7+
5. All hardcoded constants appear as a `private static final` variables at the top of the class.

Diff for: Readme.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ The definition of the word exceptionless is: to be without exception. [Exception
66

77
Refer to the Exceptionless documentation here: [Exceptionless Docs](http://docs.exceptionless.io).
88

9-
### Warning! This package is still in Beta and not yet published to Maven Central. If you need it right now feel free to contact us on [Discord]((https://discord.gg/6HxgFCx)) or create an [Issue](https://github.com/exceptionless/Exceptionless.Java/issues/new).
9+
### Warning! This package is still in Beta and not yet published to Maven Central. If you need it right now feel free to contact us on [Discord]((https://discord.gg/6HxgFCx)) or create an [Issue](https://github.com/exceptionless/Exceptionless.Java/issues/new)
1010

11-
## Show me the code!
11+
## Show me the code
1212

1313
```java
1414
class ExampleApp{
@@ -36,7 +36,7 @@ class ExampleApp{
3636

3737
You can observe `NoClassDefFoundError` in your Spring-boot apps because Spring-boot uses v3 of `OkHttpClient` while this client uses v4. In that case you have to explicitly declare v4 of the library in you `pom.xml/build.gradle`.
3838

39-
```
39+
```xml
4040
<dependencies>
4141
<dependency>
4242
<groupId>com.exceptionless</groupId>

0 commit comments

Comments
 (0)