Browse Source

修改日志打印模块

tags/1.1.0
shaozhuguang 5 years ago
parent
commit
31071068c0
7 changed files with 54 additions and 14 deletions
  1. +7
    -0
      source/base/pom.xml
  2. +9
    -6
      source/gateway/pom.xml
  3. +8
    -2
      source/peer/pom.xml
  4. +2
    -2
      source/pom.xml
  5. +12
    -0
      source/test/test-consensus-client/pom.xml
  6. +12
    -0
      source/test/test-consensus-node/pom.xml
  7. +4
    -4
      source/tools/tools-initializer/pom.xml

+ 7
- 0
source/base/pom.xml View File

@@ -8,4 +8,11 @@
<version>1.1.0-SNAPSHOT</version>
</parent>
<artifactId>base</artifactId>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>
</dependencies>
</project>

+ 9
- 6
source/gateway/pom.xml View File

@@ -77,19 +77,22 @@
<artifactId>commons-io</artifactId>
</dependency>



<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>

<!-- <dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency> -->
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>


+ 8
- 2
source/peer/pom.xml View File

@@ -54,12 +54,18 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- <dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency> -->
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>


+ 2
- 2
source/pom.xml View File

@@ -78,10 +78,10 @@
</properties>

<dependencies>
<dependency>
<!--<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</dependency>
</dependency>-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>


+ 12
- 0
source/test/test-consensus-client/pom.xml View File

@@ -13,7 +13,19 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>

<dependency>
<groupId>com.jd.blockchain</groupId>
<artifactId>consensus-bftsmart</artifactId>


+ 12
- 0
source/test/test-consensus-node/pom.xml View File

@@ -12,7 +12,19 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency>

<dependency>
<groupId>com.jd.blockchain</groupId>
<artifactId>peer</artifactId>


+ 4
- 4
source/tools/tools-initializer/pom.xml View File

@@ -72,18 +72,18 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<!-- <exclusions>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions> -->
</exclusions>
</dependency>

<!-- <dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-log4j2</artifactId>
</dependency> -->
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>


Loading…
Cancel
Save