|
6 | 6 |
|
7 | 7 | <groupId>com.uid2</groupId> |
8 | 8 | <artifactId>uid2-core</artifactId> |
9 | | - <version>2.21.7</version> |
| 9 | + <version>2.21.8-alpha-63-SNAPSHOT</version> |
10 | 10 |
|
11 | 11 | <properties> |
12 | 12 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
172 | 172 | <version>5.12.0</version> |
173 | 173 | <scope>test</scope> |
174 | 174 | </dependency> |
| 175 | + <dependency> |
| 176 | + <groupId>org.mockito</groupId> |
| 177 | + <artifactId>mockito-inline</artifactId> |
| 178 | + <version>5.2.0</version> |
| 179 | + <scope>test</scope> |
| 180 | + </dependency> |
| 181 | + <dependency> |
| 182 | + <groupId>net.bytebuddy</groupId> |
| 183 | + <artifactId>byte-buddy</artifactId> |
| 184 | + <version>1.14.17</version> |
| 185 | + </dependency> |
| 186 | + </dependencies> |
175 | 187 |
|
176 | | - </dependencies> |
177 | | - |
178 | | - <build> |
179 | | - <plugins> |
180 | | - <plugin> |
181 | | - <groupId>org.jacoco</groupId> |
182 | | - <artifactId>jacoco-maven-plugin</artifactId> |
183 | | - <version>0.8.12</version> |
184 | | - <executions> |
185 | | - <execution> |
186 | | - <goals> |
187 | | - <goal>prepare-agent</goal> |
188 | | - </goals> |
189 | | - </execution> |
190 | | - </executions> |
191 | | - </plugin> |
192 | | - <plugin> |
193 | | - <groupId>org.apache.maven.plugins</groupId> |
194 | | - <artifactId>maven-compiler-plugin</artifactId> |
195 | | - <version>3.12.1</version> |
196 | | - <configuration> |
197 | | - <source>21</source> |
198 | | - <target>21</target> |
199 | | - <release>21</release> |
200 | | - </configuration> |
201 | | - </plugin> |
202 | | - <plugin> |
203 | | - <groupId>org.apache.maven.plugins</groupId> |
204 | | - <artifactId>maven-source-plugin</artifactId> |
205 | | - <version>3.2.1</version> |
206 | | - <executions> |
207 | | - <execution> |
208 | | - <id>attach-sources</id> |
209 | | - <goals> |
210 | | - <goal>jar</goal> |
211 | | - </goals> |
212 | | - </execution> |
213 | | - </executions> |
214 | | - </plugin> |
215 | | - <plugin> |
216 | | - <groupId>io.reactiverse</groupId> |
217 | | - <artifactId>vertx-maven-plugin</artifactId> |
218 | | - <version>${vertx-maven-plugin.version}</version> |
219 | | - <executions> |
220 | | - <execution> |
221 | | - <id>vmp</id> |
222 | | - <goals> |
223 | | - <goal>initialize</goal> |
224 | | - <goal>package</goal> |
225 | | - </goals> |
226 | | - </execution> |
227 | | - </executions> |
228 | | - <configuration> |
229 | | - <redeploy>true</redeploy> |
230 | | - <jvmArgs> |
231 | | - <jvmArg>-Djava.security.egd=file:/dev/./urandom</jvmArg> |
232 | | - </jvmArgs> |
233 | | - </configuration> |
234 | | - </plugin> |
235 | | - <plugin> |
236 | | - <groupId>org.apache.maven.plugins</groupId> |
237 | | - <artifactId>maven-assembly-plugin</artifactId> |
238 | | - <version>3.3.0</version> |
239 | | - <configuration> |
240 | | - <!-- get all project dependencies --> |
241 | | - <descriptorRefs> |
242 | | - <descriptorRef>jar-with-dependencies</descriptorRef> |
243 | | - </descriptorRefs> |
244 | | - <!-- MainClass in manifest make a executable jar --> |
245 | | - <archive> |
246 | | - <manifest> |
247 | | - <mainClass>com.uid2.core.Main</mainClass> |
248 | | - </manifest> |
249 | | - </archive> |
250 | | - </configuration> |
251 | | - <executions> |
252 | | - <execution> |
253 | | - <id>make-assembly</id> |
254 | | - <!-- bind to the packaging phase --> |
255 | | - <phase>package</phase> |
256 | | - <goals> |
257 | | - <goal>single</goal> |
258 | | - </goals> |
259 | | - </execution> |
260 | | - </executions> |
261 | | - </plugin> |
262 | | - <plugin> |
263 | | - <groupId>org.codehaus.mojo</groupId> |
264 | | - <artifactId>properties-maven-plugin</artifactId> |
265 | | - <version>1.0.0</version> |
266 | | - <executions> |
267 | | - <execution> |
268 | | - <phase>generate-resources</phase> |
269 | | - <goals> |
270 | | - <goal>write-project-properties</goal> |
271 | | - </goals> |
272 | | - <configuration> |
273 | | - <outputFile>${project.build.outputDirectory}/${project.artifactId}.properties</outputFile> |
274 | | - </configuration> |
275 | | - </execution> |
276 | | - </executions> |
277 | | - </plugin> |
278 | | - <plugin> |
279 | | - <groupId>org.codehaus.mojo</groupId> |
280 | | - <artifactId>exec-maven-plugin</artifactId> |
281 | | - <version>${exec-maven-plugin.version}</version> |
282 | | - <executions> |
283 | | - <execution> |
284 | | - <id>default-cli</id> |
285 | | - <goals> |
286 | | - <goal>java</goal> |
287 | | - </goals> |
288 | | - <configuration> |
289 | | - <mainClass>com.uid2.core.Main</mainClass> |
290 | | - </configuration> |
291 | | - </execution> |
292 | | - </executions> |
293 | | - </plugin> |
294 | | - <plugin> |
295 | | - <groupId>org.apache.maven.plugins</groupId> |
296 | | - <artifactId>maven-surefire-plugin</artifactId> |
297 | | - <version>${maven-surefire-plugin.version}</version> |
298 | | - </plugin> |
299 | | - <plugin> |
300 | | - <groupId>com.azure.tools</groupId> |
301 | | - <artifactId>azure-sdk-build-tool</artifactId> |
302 | | - <version>1.0.0</version> |
303 | | - </plugin> |
304 | | - </plugins> |
305 | | - </build> |
| 188 | + <build> |
| 189 | + <plugins> |
| 190 | + <plugin> |
| 191 | + <groupId>org.jacoco</groupId> |
| 192 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 193 | + <version>0.8.8</version> |
| 194 | + <executions> |
| 195 | + <execution> |
| 196 | + <goals> |
| 197 | + <goal>prepare-agent</goal> |
| 198 | + </goals> |
| 199 | + </execution> |
| 200 | + </executions> |
| 201 | + </plugin> |
| 202 | + <plugin> |
| 203 | + <groupId>org.apache.maven.plugins</groupId> |
| 204 | + <artifactId>maven-compiler-plugin</artifactId> |
| 205 | + <version>3.11.0</version> |
| 206 | + <configuration> |
| 207 | + <source>16</source> |
| 208 | + <target>16</target> |
| 209 | + </configuration> |
| 210 | + </plugin> |
| 211 | + <plugin> |
| 212 | + <groupId>org.apache.maven.plugins</groupId> |
| 213 | + <artifactId>maven-source-plugin</artifactId> |
| 214 | + <version>3.2.1</version> |
| 215 | + <executions> |
| 216 | + <execution> |
| 217 | + <id>attach-sources</id> |
| 218 | + <goals> |
| 219 | + <goal>jar</goal> |
| 220 | + </goals> |
| 221 | + </execution> |
| 222 | + </executions> |
| 223 | + </plugin> |
| 224 | + <plugin> |
| 225 | + <groupId>io.reactiverse</groupId> |
| 226 | + <artifactId>vertx-maven-plugin</artifactId> |
| 227 | + <version>${vertx-maven-plugin.version}</version> |
| 228 | + <executions> |
| 229 | + <execution> |
| 230 | + <id>vmp</id> |
| 231 | + <goals> |
| 232 | + <goal>initialize</goal> |
| 233 | + <goal>package</goal> |
| 234 | + </goals> |
| 235 | + </execution> |
| 236 | + </executions> |
| 237 | + <configuration> |
| 238 | + <redeploy>true</redeploy> |
| 239 | + <jvmArgs> |
| 240 | + <jvmArg>-Djava.security.egd=file:/dev/./urandom</jvmArg> |
| 241 | + </jvmArgs> |
| 242 | + </configuration> |
| 243 | + </plugin> |
| 244 | + <plugin> |
| 245 | + <groupId>org.apache.maven.plugins</groupId> |
| 246 | + <artifactId>maven-assembly-plugin</artifactId> |
| 247 | + <version>3.3.0</version> |
| 248 | + <configuration> |
| 249 | + <!-- get all project dependencies --> |
| 250 | + <descriptorRefs> |
| 251 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 252 | + </descriptorRefs> |
| 253 | + <!-- MainClass in manifest make a executable jar --> |
| 254 | + <archive> |
| 255 | + <manifest> |
| 256 | + <mainClass>com.uid2.core.Main</mainClass> |
| 257 | + </manifest> |
| 258 | + </archive> |
| 259 | + </configuration> |
| 260 | + <executions> |
| 261 | + <execution> |
| 262 | + <id>make-assembly</id> |
| 263 | + <!-- bind to the packaging phase --> |
| 264 | + <phase>package</phase> |
| 265 | + <goals> |
| 266 | + <goal>single</goal> |
| 267 | + </goals> |
| 268 | + </execution> |
| 269 | + </executions> |
| 270 | + </plugin> |
| 271 | + <plugin> |
| 272 | + <groupId>org.codehaus.mojo</groupId> |
| 273 | + <artifactId>properties-maven-plugin</artifactId> |
| 274 | + <version>1.0.0</version> |
| 275 | + <executions> |
| 276 | + <execution> |
| 277 | + <phase>generate-resources</phase> |
| 278 | + <goals> |
| 279 | + <goal>write-project-properties</goal> |
| 280 | + </goals> |
| 281 | + <configuration> |
| 282 | + <outputFile>${project.build.outputDirectory}/${project.artifactId}.properties</outputFile> |
| 283 | + </configuration> |
| 284 | + </execution> |
| 285 | + </executions> |
| 286 | + </plugin> |
| 287 | + <plugin> |
| 288 | + <groupId>org.codehaus.mojo</groupId> |
| 289 | + <artifactId>exec-maven-plugin</artifactId> |
| 290 | + <version>${exec-maven-plugin.version}</version> |
| 291 | + <executions> |
| 292 | + <execution> |
| 293 | + <id>default-cli</id> |
| 294 | + <goals> |
| 295 | + <goal>java</goal> |
| 296 | + </goals> |
| 297 | + <configuration> |
| 298 | + <mainClass>com.uid2.core.Main</mainClass> |
| 299 | + </configuration> |
| 300 | + </execution> |
| 301 | + </executions> |
| 302 | + </plugin> |
| 303 | + <plugin> |
| 304 | + <groupId>org.apache.maven.plugins</groupId> |
| 305 | + <artifactId>maven-surefire-plugin</artifactId> |
| 306 | + <version>${maven-surefire-plugin.version}</version> |
| 307 | + </plugin> |
| 308 | + </plugins> |
| 309 | + </build> |
306 | 310 | </project> |
0 commit comments