CopyPastor

Detecting plagiarism made easy.

Score: 0.8360013961791992; Reported for: String similarity Open both answers

Possible Plagiarism

Plagiarized on 2018-12-07
by Spara

Original Post

Original - Posted on 2014-06-02
by F.O.O



            
Present in both answers; Present only in the new answer; Present only in the old answer;

You should remove `spring-boot-starter-logging` from `spring-boot-starter` and `spring-boot-starter-web`:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</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-web</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-logging</artifactId> </exclusion> </exclusions> </dependency>
Add exclusion to both the spring-boot-starter and spring-boot-starter-web to resolve the conflict.
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</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-web</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-logging</artifactId> </exclusion> </exclusions> </dependency>

        
Present in both answers; Present only in the new answer; Present only in the old answer;