Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 31 additions & 14 deletions microsphere-multiactive-aws/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,30 +20,31 @@

<dependencies>

<!-- Microsphere -->
<!-- Microsphere Annotation Processor -->
<dependency>
<groupId>io.github.microsphere-projects</groupId>
<artifactId>microsphere-multiactive-spring-cloud</artifactId>
<version>${revision}</version>
<artifactId>microsphere-annotation-processor</artifactId>
<optional>true</optional>
</dependency>

<!-- Spring Boot -->
<!-- Microsphere Multi-Active Spring Cloud -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<groupId>io.github.microsphere-projects</groupId>
<artifactId>microsphere-multiactive-spring-cloud</artifactId>
<version>${revision}</version>
<optional>true</optional>
</dependency>

<!-- Spring Boot Dependencies -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<artifactId>spring-boot-starter</artifactId>
<optional>true</optional>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
<artifactId>spring-boot-starter-actuator</artifactId>
<optional>true</optional>
</dependency>

Expand All @@ -55,7 +56,7 @@

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<artifactId>spring-boot-autoconfigure-processor</artifactId>
<optional>true</optional>
</dependency>

Expand All @@ -72,10 +73,10 @@
<optional>true</optional>
</dependency>

<!-- SLJ4J -->
<!-- Jackson -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<optional>true</optional>
</dependency>

Expand All @@ -86,10 +87,26 @@
<scope>test</scope>
</dependency>

<!-- Spring Boot Test -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

<!-- Microsphere Spring Boot Test -->
<dependency>
<groupId>io.github.microsphere-projects</groupId>
<artifactId>microsphere-spring-boot-test</artifactId>
<scope>test</scope>
</dependency>

<!-- Logback -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>

</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public String locate(Environment environment) {
logger.warn("The Amazon ECS Container metadata file [path : '{}' ] can't be read", metadataFile.getAbsolutePath());
}
} else {
logger.debug("The environment variable [name : '{}' ] of Amazon ECS container metadata file can't be found", METADATA_FILE_ENV_NAME);
logger.trace("The environment variable [name : '{}' ] of Amazon ECS container metadata file can't be found", METADATA_FILE_ENV_NAME);
}
return zone;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public String locate(Environment environment) {
logger.error("Request Amazon ECS Task metadata endpoint version 4 [URL : '{}'] failed", taskURL, e);
}
} else {
logger.debug("The environment variable [name : '{}' ] of Amazon ECS Task metadata endpoint version 4 can't be found",
logger.trace("The environment variable [name : '{}' ] of Amazon ECS Task metadata endpoint version 4 can't be found",
METADATA_URI_V4_ENV_NAME);
}
return zone;
Expand Down
25 changes: 18 additions & 7 deletions microsphere-multiactive-commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,18 @@
<description>Microsphere Multi-Active Commons</description>

<dependencies>
<!-- Microsphere Core -->

<!-- Microsphere Annotation Processor -->
<dependency>
<groupId>io.github.microsphere-projects</groupId>
<artifactId>microsphere-java-core</artifactId>
<artifactId>microsphere-annotation-processor</artifactId>
<optional>true</optional>
</dependency>

<!-- Third-Party Dependencies -->
<!-- Microsphere Java Core -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<groupId>io.github.microsphere-projects</groupId>
<artifactId>microsphere-java-core</artifactId>
<optional>true</optional>
</dependency>

Expand All @@ -39,10 +41,19 @@
<scope>test</scope>
</dependency>

<!-- Microsphere Java Test -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<groupId>io.github.microsphere-projects</groupId>
<artifactId>microsphere-java-test</artifactId>
<scope>test</scope>
</dependency>

<!-- Logback -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>test</scope>
</dependency>

</dependencies>
</project>
Loading
Loading