Skip to content

Commit

Permalink
[重构]es模块移至seckill模块 (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
techa03 authored Sep 2, 2023
1 parent 59eb954 commit 4e8cfa2
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import org.mockito.InjectMocks;
import org.mockito.Mock;
import org.mockito.junit.jupiter.MockitoExtension;
import org.springframework.security.crypto.password.PasswordEncoder;

import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertNull;
Expand All @@ -32,6 +33,8 @@ public class UserAccountServiceImplTest {
private UserMapper baseMapper;
@Mock
private PermissionMapper permissionMapper;
@Mock
private PasswordEncoder passwordEncoder;

@Test
public void register() {
Expand Down
4 changes: 0 additions & 4 deletions goodskill-job/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@
<groupId>com.goodskill</groupId>
<artifactId>goodskill-api</artifactId>
</dependency>
<dependency>
<groupId>com.goodskill</groupId>
<artifactId>goodskill-es-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-spring-boot-starter</artifactId>
Expand Down
4 changes: 0 additions & 4 deletions goodskill-seckill-provider/goodskill-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@
<groupId>com.goodskill</groupId>
<artifactId>goodskill-order-api</artifactId>
</dependency>
<dependency>
<groupId>com.goodskill</groupId>
<artifactId>goodskill-es-api</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.kafka</groupId>
<artifactId>spring-kafka</artifactId>
Expand Down
4 changes: 0 additions & 4 deletions goodskill-web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
</dependency>
<dependency>
<groupId>com.goodskill</groupId>
<artifactId>goodskill-es-api</artifactId>
</dependency>
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
Expand Down
5 changes: 0 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -200,11 +200,6 @@
<artifactId>goodskill-order-api</artifactId>
<version>${goodskill.version}</version>
</dependency>
<dependency>
<groupId>com.goodskill</groupId>
<artifactId>goodskill-es-api</artifactId>
<version>${goodskill.version}</version>
</dependency>
<dependency>
<groupId>com.goodskill</groupId>
<artifactId>goodskill-spring-boot-starter</artifactId>
Expand Down

0 comments on commit 4e8cfa2

Please sign in to comment.