File tree 4 files changed +4
-6
lines changed
test/java/com/baeldung/web/controller/mediatypes
4 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 183
183
<plugin >
184
184
<groupId >org.springframework.boot</groupId >
185
185
<artifactId >spring-boot-maven-plugin</artifactId >
186
- <configuration >
187
- <skip >true</skip >
188
- </configuration >
189
186
</plugin >
190
187
<plugin >
191
188
<groupId >org.apache.maven.plugins</groupId >
300
297
<json .path.version>2.2.0</json .path.version>
301
298
<pact .version>3.5.11</pact .version>
302
299
<rest-assured .version>3.1.0</rest-assured .version>
300
+ <start-class >com.baeldung.sampleapp.config.MainApplication</start-class >
303
301
</properties >
304
302
305
303
</project >
Original file line number Diff line number Diff line change 6
6
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd"
7
7
>
8
8
9
- <context : component-scan base-package =" org .baeldung.web" />
9
+ <context : component-scan base-package =" com .baeldung.sampleapp .web" />
10
10
11
11
<mvc : annotation-driven content-negotiation-manager =" contentNegotiationManager" >
12
12
<mvc : message-converters register-defaults =" true" >
Original file line number Diff line number Diff line change 16
16
</context-param >
17
17
<context-param >
18
18
<param-name >contextConfigLocation</param-name >
19
- <param-value >org .baeldung.config</param-value >
19
+ <param-value >com .baeldung.sampleapp .config</param-value >
20
20
</context-param >
21
21
22
22
<!-- <listener>
Original file line number Diff line number Diff line change 5
5
6
6
7
7
@ Configuration
8
- @ ComponentScan ({ "org .baeldung.web" })
8
+ @ ComponentScan ({ "com .baeldung.web" })
9
9
public class TestConfig {
10
10
11
11
}
You can’t perform that action at this time.
0 commit comments