Fix eclipse warnings
This commit is contained in:
parent
9f7e97b23f
commit
f59cc25e2b
|
@ -185,6 +185,25 @@
|
|||
<configuration>
|
||||
<lifecycleMappingMetadata>
|
||||
<pluginExecutions>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>
|
||||
org.apache.maven.plugins
|
||||
</groupId>
|
||||
<artifactId>
|
||||
maven-enforcer-plugin
|
||||
</artifactId>
|
||||
<versionRange>
|
||||
[1.3.1,)
|
||||
</versionRange>
|
||||
<goals>
|
||||
<goal>enforce</goal>
|
||||
</goals>
|
||||
</pluginExecutionFilter>
|
||||
<action>
|
||||
<ignore />
|
||||
</action>
|
||||
</pluginExecution>
|
||||
<pluginExecution>
|
||||
<pluginExecutionFilter>
|
||||
<groupId>
|
||||
|
|
|
@ -39,6 +39,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
|||
@SpringApplicationConfiguration(Config.class)
|
||||
@IntegrationTest
|
||||
@Deprecated
|
||||
@SuppressWarnings("deprecation")
|
||||
public class SpringApplicationConfigurationJmxTests {
|
||||
|
||||
@Value("${spring.jmx.enabled}")
|
||||
|
|
|
@ -36,6 +36,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
|||
@DirtiesContext
|
||||
@SpringApplicationConfiguration(classes = Config.class, locations = "classpath:test.groovy")
|
||||
@Deprecated
|
||||
@SuppressWarnings("deprecation")
|
||||
public class SpringApplicationConfigurationMixedConfigurationTests {
|
||||
|
||||
@Autowired
|
||||
|
|
|
@ -46,6 +46,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
|||
@IntegrationTest({ "server.port=0", "value1=123" })
|
||||
@TestPropertySource(properties = "value2=456", locations = "classpath:/test-property-source-annotation.properties")
|
||||
@Deprecated
|
||||
@SuppressWarnings("deprecation")
|
||||
public class SpringApplicationIntegrationTestPropertyLocationTests {
|
||||
|
||||
@Autowired
|
||||
|
|
|
@ -51,6 +51,7 @@ import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.
|
|||
@SpringApplicationConfiguration(classes = Config.class)
|
||||
@WebAppConfiguration
|
||||
@Deprecated
|
||||
@SuppressWarnings("deprecation")
|
||||
public class SpringApplicationMockMvcTests {
|
||||
|
||||
@Autowired
|
||||
|
|
|
@ -43,6 +43,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
|||
@ContextConfiguration(classes = Config.class, loader = SpringApplicationContextLoader.class)
|
||||
@WebAppConfiguration
|
||||
@Deprecated
|
||||
@SuppressWarnings("deprecation")
|
||||
public class SpringApplicationMockServletTests {
|
||||
|
||||
@Autowired
|
||||
|
|
Loading…
Reference in New Issue