Skip to content

Commit 8153eb1

Browse files
committed
Removed redundant dependency. Made JUnit version a property
1 parent eb51dac commit 8153eb1

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

pom.xml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@
7777
<guava.version>30.1.1-jre</guava.version>
7878
<guava-retrying.version>2.0.0</guava-retrying.version>
7979
<caffeine.version>2.6.2</caffeine.version>
80+
<junit.jupiter.version>5.7.2</junit.jupiter.version>
8081
<h2.version>1.4.196</h2.version>
8182
<mockito.version>4.3.1</mockito.version>
8283
</properties>
@@ -101,13 +102,7 @@
101102
<dependency>
102103
<groupId>org.junit.jupiter</groupId>
103104
<artifactId>junit-jupiter</artifactId>
104-
<version>5.7.2</version>
105-
<scope>test</scope>
106-
</dependency>
107-
<dependency>
108-
<groupId>org.junit.jupiter</groupId>
109-
<artifactId>junit-jupiter-api</artifactId>
110-
<version>5.7.2</version>
105+
<version>${junit.jupiter.version}</version>
111106
<scope>test</scope>
112107
</dependency>
113108
<dependency>
@@ -187,7 +182,8 @@
187182
<source>1.8</source>
188183
<target>1.8</target>
189184
<annotationProcessors>
190-
<annotationProcessor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor</annotationProcessor>
185+
<annotationProcessor>lombok.launch.AnnotationProcessorHider$AnnotationProcessor
186+
</annotationProcessor>
191187
</annotationProcessors>
192188
<annotationProcessorPaths>
193189
<annotationProcessorPath>

0 commit comments

Comments
 (0)