Skip to content

Commit

Permalink
🍱 update actor pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
sanshengshui committed Sep 11, 2021
1 parent 4c99f31 commit 581b440
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 3 deletions.
27 changes: 26 additions & 1 deletion IOT-Guide-Actor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,43 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>IOT-Guide</artifactId>
<groupId>iot.technology</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<name>IoT Technology Guide :: Actor</name>
<artifactId>IOT-Guide-Actor</artifactId>

<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>

<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

</project>
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
<slf4j.version>1.7.7</slf4j.version>
<logback.version>1.2.3</logback.version>
<junit.version>4.13.1</junit.version>
<mockito.version>1.9.5</mockito.version>
<mockito.version>3.3.3</mockito.version>
<gson.version>2.6.2</gson.version>
<guava.version>30.1-jre</guava.version>
<spring-boot.version>2.0.5.RELEASE</spring-boot.version>
Expand Down Expand Up @@ -178,7 +178,7 @@
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
Expand Down

0 comments on commit 581b440

Please sign in to comment.