Skip to content

Commit 581b440

Browse files
committed
🍱 update actor pom.xml
1 parent 4c99f31 commit 581b440

File tree

2 files changed

+28
-3
lines changed

2 files changed

+28
-3
lines changed

IOT-Guide-Actor/pom.xml

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,43 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
56
<parent>
67
<artifactId>IOT-Guide</artifactId>
78
<groupId>iot.technology</groupId>
89
<version>1.0-SNAPSHOT</version>
910
</parent>
10-
<modelVersion>4.0.0</modelVersion>
1111

12+
<name>IoT Technology Guide :: Actor</name>
1213
<artifactId>IOT-Guide-Actor</artifactId>
1314

1415
<properties>
1516
<maven.compiler.source>8</maven.compiler.source>
1617
<maven.compiler.target>8</maven.compiler.target>
1718
</properties>
1819

20+
<dependencies>
21+
<dependency>
22+
<groupId>org.slf4j</groupId>
23+
<artifactId>slf4j-api</artifactId>
24+
</dependency>
25+
<dependency>
26+
<groupId>org.slf4j</groupId>
27+
<artifactId>log4j-over-slf4j</artifactId>
28+
</dependency>
29+
<dependency>
30+
<groupId>ch.qos.logback</groupId>
31+
<artifactId>logback-core</artifactId>
32+
</dependency>
33+
<dependency>
34+
<groupId>ch.qos.logback</groupId>
35+
<artifactId>logback-classic</artifactId>
36+
</dependency>
37+
<dependency>
38+
<groupId>org.mockito</groupId>
39+
<artifactId>mockito-core</artifactId>
40+
<scope>test</scope>
41+
</dependency>
42+
</dependencies>
43+
1944
</project>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
<slf4j.version>1.7.7</slf4j.version>
9595
<logback.version>1.2.3</logback.version>
9696
<junit.version>4.13.1</junit.version>
97-
<mockito.version>1.9.5</mockito.version>
97+
<mockito.version>3.3.3</mockito.version>
9898
<gson.version>2.6.2</gson.version>
9999
<guava.version>30.1-jre</guava.version>
100100
<spring-boot.version>2.0.5.RELEASE</spring-boot.version>
@@ -178,7 +178,7 @@
178178
</dependency>
179179
<dependency>
180180
<groupId>org.mockito</groupId>
181-
<artifactId>mockito-all</artifactId>
181+
<artifactId>mockito-core</artifactId>
182182
<version>${mockito.version}</version>
183183
<scope>test</scope>
184184
</dependency>

0 commit comments

Comments
 (0)