|
41 | 41 | <module>subscriber-service</module> |
42 | 42 | </modules> |
43 | 43 |
|
44 | | - <properties> |
45 | | - <java.version>21</java.version> |
46 | | - <spring.boot.version>3.4.4</spring.boot.version> |
47 | | - </properties> |
48 | | - |
49 | 44 | <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>--> |
70 | 45 | <dependency> |
71 | 46 | <groupId>org.springframework.boot</groupId> |
72 | 47 | <artifactId>spring-boot-starter-web</artifactId> |
73 | | - <version>${spring.boot.version}</version> |
| 48 | + <version>${spring-boot.version}</version> |
74 | 49 | </dependency> |
75 | 50 |
|
76 | 51 | <dependency> |
77 | 52 | <groupId>org.springframework.boot</groupId> |
78 | 53 | <artifactId>spring-boot-starter</artifactId> |
79 | | - <version>${spring.boot.version}</version> |
| 54 | + <version>${spring-boot.version}</version> |
80 | 55 | </dependency> |
81 | 56 |
|
82 | 57 | <!-- Spring Boot Test --> |
83 | 58 | <dependency> |
84 | 59 | <groupId>org.springframework.boot</groupId> |
85 | 60 | <artifactId>spring-boot-starter-test</artifactId> |
86 | | - <version>${spring.boot.version}</version> |
| 61 | + <version>${spring-boot.version}</version> |
87 | 62 | <scope>test</scope> |
88 | 63 | </dependency> |
89 | 64 |
|
|
105 | 80 | <dependency> |
106 | 81 | <groupId>org.springframework.boot</groupId> |
107 | 82 | <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> |
121 | 84 | </dependency> |
122 | 85 |
|
123 | 86 | <!-- https://mvnrepository.com/artifact/javax.annotation/javax.annotation-api --> |
|
138 | 101 | <version>1.5.18</version> |
139 | 102 | </dependency> |
140 | 103 |
|
141 | | - |
142 | | - |
143 | 104 | </dependencies> |
144 | 105 |
|
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 | | - |
167 | 106 | </project> |
0 commit comments