- fixed spelling error in README.md
- Added Mockito Dependency
This commit is contained in:
parent
0c44e51682
commit
312a9c92b2
@ -3,7 +3,7 @@
|
||||
Example Maven Project for a Java Application.
|
||||
|
||||
This project includes:
|
||||
- Lombok to reduce biolerplate code
|
||||
- Lombok to reduce boilerplate code
|
||||
- Adding module-info for dependencies that are missing these.
|
||||
- Unit Tests are run at build
|
||||
- static code analysis with PMD and spotbugs
|
||||
|
||||
11
pom.xml
11
pom.xml
@ -26,6 +26,7 @@
|
||||
<jetbrains.annotations.version>23.0.0</jetbrains.annotations.version>
|
||||
<junit.version>5.9.1</junit.version>
|
||||
<lombok.version>1.18.24</lombok.version>
|
||||
<mockito.version>4.9.0</mockito.version>
|
||||
<pmd.version>6.51.0</pmd.version>
|
||||
<spotbugs.version>4.7.3</spotbugs.version>
|
||||
|
||||
@ -78,6 +79,14 @@
|
||||
<scope>test</scope>
|
||||
</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>
|
||||
<groupId>org.jetbrains</groupId>
|
||||
@ -111,7 +120,7 @@
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
<!-- Compiler including Lobok -->
|
||||
<!-- Compiler including Lombok -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user