Skip to content

Commit 7503169

Browse files
committed
removed duplicate dependencies
1 parent 294dc88 commit 7503169

File tree

2 files changed

+29
-25
lines changed

2 files changed

+29
-25
lines changed

.gitignore

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,35 @@
1+
target/
2+
!.mvn/wrapper/maven-wrapper.jar
3+
!**/src/main/**/target/
4+
!**/src/test/**/target/
5+
6+
### STS ###
7+
.apt_generated
8+
.classpath
9+
.factorypath
10+
.project
11+
.settings
12+
.springBeans
13+
.sts4-cache
14+
115
### IntelliJ ###
16+
*.iws
217
*.iml
18+
*.ipr
319
.idea/
420

5-
### Maven ###
6-
target/
7-
/.mvn/wrapper/*.jar
21+
### NetBeans ###
22+
/nbproject/private/
23+
/nbbuild/
24+
/dist/
25+
/nbdist/
26+
/.nb-gradle/
27+
build/
28+
!**/src/main/**/build/
29+
!**/src/test/**/build/
30+
31+
### VS Code ###
32+
.vscode/
833

934
*.log
1035

problem-spring-web-autoconfigure/pom.xml

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -48,34 +48,13 @@
4848
<optional>true</optional>
4949
</dependency>
5050

51-
<!-- test-->
51+
<!-- test-->
5252

53-
54-
<dependency>
55-
<groupId>org.junit.jupiter</groupId>
56-
<artifactId>junit-jupiter-engine</artifactId>
57-
<scope>test</scope>
58-
</dependency>
59-
<dependency>
60-
<groupId>org.mockito</groupId>
61-
<artifactId>mockito-core</artifactId>
62-
<scope>test</scope>
63-
</dependency>
6453
<dependency>
6554
<groupId>com.jayway.jsonpath</groupId>
6655
<artifactId>json-path-assert</artifactId>
6756
<scope>test</scope>
6857
</dependency>
69-
<dependency>
70-
<groupId>org.junit.jupiter</groupId>
71-
<artifactId>junit-jupiter-params</artifactId>
72-
<scope>test</scope>
73-
</dependency>
74-
<dependency>
75-
<groupId>org.springframework</groupId>
76-
<artifactId>spring-test</artifactId>
77-
<scope>test</scope>
78-
</dependency>
7958
<dependency>
8059
<groupId>org.springframework.boot</groupId>
8160
<artifactId>spring-boot-starter-test</artifactId>

0 commit comments

Comments
 (0)