Skip to content

Commit

Permalink
chore:update version (#289)
Browse files Browse the repository at this point in the history
* chore:update version

* chore:update version

---------

Co-authored-by: yushuwang <[email protected]>
  • Loading branch information
wildeslam and yushuwang authored Oct 16, 2023
1 parent c1645e2 commit 3942b86
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 7 deletions.
2 changes: 1 addition & 1 deletion arex-web-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.arextest</groupId>
<artifactId>arex-web</artifactId>
<version>0.5.0.7</version>
<version>0.5.0.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>${packagingType}</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
import com.arextest.common.enums.AuthRejectStrategy;
import com.arextest.common.model.response.ResponseCode;
import com.arextest.model.replay.ViewRecordRequestType;
import com.arextest.model.replay.ViewRecordResponseType;
import com.arextest.model.response.Response;
import com.arextest.model.response.ResponseStatusType;
import com.arextest.web.common.HttpUtils;
import com.arextest.web.model.contract.contracts.ViewRecordResponseType;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
Expand Down
2 changes: 1 addition & 1 deletion arex-web-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.arextest</groupId>
<artifactId>arex-web</artifactId>
<version>0.5.0.7</version>
<version>0.5.0.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion arex-web-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.arextest</groupId>
<artifactId>arex-web</artifactId>
<version>0.5.0.7</version>
<version>0.5.0.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>arex-web-core</artifactId>
Expand Down
6 changes: 5 additions & 1 deletion arex-web-model-contract/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.arextest</groupId>
<artifactId>arex-web</artifactId>
<version>0.5.0.7</version>
<version>0.5.0.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -31,6 +31,10 @@
<groupId>com.arextest</groupId>
<artifactId>arex-storage-config</artifactId>
</dependency>
<dependency>
<groupId>com.arextest</groupId>
<artifactId>arex-model</artifactId>
</dependency>
</dependencies>

<properties>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package com.arextest.web.model.contract.contracts;

import com.arextest.model.mock.AREXMocker;
import com.arextest.model.response.Response;
import com.arextest.model.response.ResponseStatusType;
import lombok.Data;

import java.util.List;

/**
* @author wildeslam.
* @create 2023/10/16 16:40
*/
@Data
public class ViewRecordResponseType implements Response {
private ResponseStatusType responseStatusType;
private List<AREXMocker> recordResult;
private boolean desensitized;
}
2 changes: 1 addition & 1 deletion arex-web-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.arextest</groupId>
<artifactId>arex-web</artifactId>
<version>0.5.0.7</version>
<version>0.5.0.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.arextest</groupId>
<artifactId>arex-web</artifactId>
<packaging>pom</packaging>
<version>0.5.0.7</version>
<version>0.5.0.8</version>
<modules>
<module>arex-web-api</module>
<module>arex-web-common</module>
Expand Down

0 comments on commit 3942b86

Please sign in to comment.