Skip to content

Commit 256d81b

Browse files
committed
addressed review comment: removed unnecessary dependency
1 parent ff872e7 commit 256d81b

File tree

1 file changed

+4
-65
lines changed

1 file changed

+4
-65
lines changed

polling-publisher/pom.xml

Lines changed: 4 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -41,49 +41,24 @@
4141
<module>subscriber-service</module>
4242
</modules>
4343

44-
<properties>
45-
<java.version>21</java.version>
46-
<spring.boot.version>3.4.4</spring.boot.version>
47-
</properties>
48-
4944
<dependencies>
50-
<!-- https://mvnrepository.com/artifact/org.junit.jupiter/junit-jupiter-api -->
51-
<!-- <dependency>-->
52-
<!-- <groupId>org.junit.jupiter</groupId>-->
53-
<!-- <artifactId>junit-jupiter-api</artifactId>-->
54-
<!-- <version>5.10.1</version>-->
55-
<!-- <scope>test</scope>-->
56-
<!-- </dependency>-->
57-
<!-- <dependency>-->
58-
<!-- <groupId>org.junit.jupiter</groupId>-->
59-
<!-- <artifactId>junit-jupiter-engine</artifactId>-->
60-
<!-- <version>5.9.2</version>-->
61-
<!-- <scope>test</scope>-->
62-
<!-- </dependency>-->
63-
<!-- <dependency>-->
64-
<!-- <groupId>org.springframework.boot</groupId>-->
65-
<!-- <artifactId>spring-boot-dependencies</artifactId>-->
66-
<!-- <version>${spring.boot.version}</version>-->
67-
<!-- <type>pom</type>-->
68-
<!-- <scope>import</scope>-->
69-
<!-- </dependency>-->
7045
<dependency>
7146
<groupId>org.springframework.boot</groupId>
7247
<artifactId>spring-boot-starter-web</artifactId>
73-
<version>${spring.boot.version}</version>
48+
<version>${spring-boot.version}</version>
7449
</dependency>
7550

7651
<dependency>
7752
<groupId>org.springframework.boot</groupId>
7853
<artifactId>spring-boot-starter</artifactId>
79-
<version>${spring.boot.version}</version>
54+
<version>${spring-boot.version}</version>
8055
</dependency>
8156

8257
<!-- Spring Boot Test -->
8358
<dependency>
8459
<groupId>org.springframework.boot</groupId>
8560
<artifactId>spring-boot-starter-test</artifactId>
86-
<version>${spring.boot.version}</version>
61+
<version>${spring-boot.version}</version>
8762
<scope>test</scope>
8863
</dependency>
8964

@@ -105,19 +80,7 @@
10580
<dependency>
10681
<groupId>org.springframework.boot</groupId>
10782
<artifactId>spring-boot</artifactId>
108-
<version>${spring.boot.version}</version>
109-
</dependency>
110-
111-
<dependency>
112-
<groupId>org.mockito</groupId>
113-
<artifactId>mockito-core</artifactId>
114-
<scope>test</scope>
115-
</dependency>
116-
<dependency>
117-
<groupId>org.mockito</groupId>
118-
<artifactId>mockito-inline</artifactId>
119-
<version>5.2.0</version>
120-
<scope>test</scope>
83+
<version>${spring-boot.version}</version>
12184
</dependency>
12285

12386
<!-- https://mvnrepository.com/artifact/javax.annotation/javax.annotation-api -->
@@ -138,30 +101,6 @@
138101
<version>1.5.18</version>
139102
</dependency>
140103

141-
142-
143104
</dependencies>
144105

145-
<build>
146-
<pluginManagement>
147-
<plugins>
148-
<plugin>
149-
<groupId>org.apache.maven.plugins</groupId>
150-
<artifactId>maven-compiler-plugin</artifactId>
151-
<!-- <artifactId>maven-assembly-plugin</artifactId>-->
152-
<version>3.8.1</version>
153-
<configuration>
154-
<source>21</source>
155-
<target>21</target>
156-
</configuration>
157-
</plugin>
158-
<plugin>
159-
<groupId>org.apache.maven.plugins</groupId>
160-
<artifactId>maven-surefire-plugin</artifactId>
161-
<version>2.22.2</version>
162-
</plugin>
163-
</plugins>
164-
</pluginManagement>
165-
</build>
166-
167106
</project>

0 commit comments

Comments
 (0)