Skip to content

Commit

Permalink
Feat/multi env config (#152)
Browse files Browse the repository at this point in the history
* fix: nested obj
  • Loading branch information
QizhengMo authored Jan 17, 2024
1 parent 5d68e19 commit b6f33da
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion arex-storage-config/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<parent>
<artifactId>arex-storage-service</artifactId>
<groupId>com.arextest</groupId>
<version>1.1.1</version>
<version>1.1.2</version>
</parent>

<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import java.util.Map;

public interface MultiEnvConfig<T> {
List<T> getMultiEnvConfigs();
void setMultiEnvConfigs(List<T> multiEnvConfigs);
List<MultiEnvConfig<T>> getMultiEnvConfigs();
void setMultiEnvConfigs(List<MultiEnvConfig<T>> multiEnvConfigs);

Map<String, String> getEnvTags();
void setEnvTags(Map<String, String> envTags);
Expand Down
2 changes: 1 addition & 1 deletion arex-storage-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>arex-storage-service</artifactId>
<groupId>com.arextest</groupId>
<version>1.1.1</version>
<version>1.1.2</version>
</parent>

<profiles>
Expand Down
2 changes: 1 addition & 1 deletion arex-storage-web-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
<parent>
<artifactId>arex-storage-service</artifactId>
<groupId>com.arextest</groupId>
<version>1.1.1</version>
<version>1.1.2</version>
</parent>

<profiles>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -408,5 +408,5 @@
<url>https://github.com/arextest/arex-storage</url>


<version>1.1.1</version>
<version>1.1.2</version>
</project>

0 comments on commit b6f33da

Please sign in to comment.