Skip to content

Commit

Permalink
removed duplicate dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
danielrohe committed Feb 24, 2023
1 parent 294dc88 commit 7503169
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 25 deletions.
31 changes: 28 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,35 @@
target/
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**/target/
!**/src/test/**/target/

### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache

### IntelliJ ###
*.iws
*.iml
*.ipr
.idea/

### Maven ###
target/
/.mvn/wrapper/*.jar
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
build/
!**/src/main/**/build/
!**/src/test/**/build/

### VS Code ###
.vscode/

*.log

Expand Down
23 changes: 1 addition & 22 deletions problem-spring-web-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,34 +48,13 @@
<optional>true</optional>
</dependency>

<!-- test-->
<!-- test-->


<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path-assert</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-params</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
Expand Down

0 comments on commit 7503169

Please sign in to comment.