Merge pull request #5 from kneitzel/Profiles
- fixed spelling error in README.md
This commit is contained in:
commit
75957ef0f8
@ -3,7 +3,7 @@
|
|||||||
Example Maven Project for a Java Application.
|
Example Maven Project for a Java Application.
|
||||||
|
|
||||||
This project includes:
|
This project includes:
|
||||||
- Lombok to reduce biolerplate code
|
- Lombok to reduce boilerplate code
|
||||||
- Adding module-info for dependencies that are missing these.
|
- Adding module-info for dependencies that are missing these.
|
||||||
- Unit Tests are run at build
|
- Unit Tests are run at build
|
||||||
- static code analysis with PMD and spotbugs
|
- static code analysis with PMD and spotbugs
|
||||||
|
|||||||
9
pom.xml
9
pom.xml
@ -30,6 +30,7 @@
|
|||||||
<jetbrains.annotations.version>23.0.0</jetbrains.annotations.version>
|
<jetbrains.annotations.version>23.0.0</jetbrains.annotations.version>
|
||||||
<junit.version>5.9.1</junit.version>
|
<junit.version>5.9.1</junit.version>
|
||||||
<lombok.version>1.18.24</lombok.version>
|
<lombok.version>1.18.24</lombok.version>
|
||||||
|
<mockito.version>4.9.0</mockito.version>
|
||||||
<pmd.version>6.51.0</pmd.version>
|
<pmd.version>6.51.0</pmd.version>
|
||||||
<spotbugs.version>4.7.3</spotbugs.version>
|
<spotbugs.version>4.7.3</spotbugs.version>
|
||||||
|
|
||||||
@ -82,6 +83,14 @@
|
|||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- Mockito -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.mockito</groupId>
|
||||||
|
<artifactId>mockito-core</artifactId>
|
||||||
|
<version>${mockito.version}</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- Dependency used for @NotNull / @Nullable -->
|
<!-- Dependency used for @NotNull / @Nullable -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains</groupId>
|
<groupId>org.jetbrains</groupId>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user