Merge branch '1.5.x'
This commit is contained in:
commit
d897bf7354
|
@ -60,7 +60,7 @@ public class DevToolsProperties {
|
||||||
|
|
||||||
private static final String DEFAULT_RESTART_EXCLUDES = "META-INF/maven/**,"
|
private static final String DEFAULT_RESTART_EXCLUDES = "META-INF/maven/**,"
|
||||||
+ "META-INF/resources/**,resources/**,static/**,public/**,templates/**,"
|
+ "META-INF/resources/**,resources/**,static/**,public/**,templates/**,"
|
||||||
+ "**/*Test.class,**/*Tests.class,git.properties";
|
+ "**/*Test.class,**/*Tests.class,git.properties,META-INF/build-info.properties";
|
||||||
|
|
||||||
private static final long DEFAULT_RESTART_POLL_INTERVAL = 1000;
|
private static final long DEFAULT_RESTART_POLL_INTERVAL = 1000;
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@ public class DevToolsPropertiesTests {
|
||||||
assertThat(restart.getAllExclude()).containsOnly("META-INF/maven/**",
|
assertThat(restart.getAllExclude()).containsOnly("META-INF/maven/**",
|
||||||
"META-INF/resources/**", "resources/**", "static/**", "public/**",
|
"META-INF/resources/**", "resources/**", "static/**", "public/**",
|
||||||
"templates/**", "**/*Test.class", "**/*Tests.class", "git.properties",
|
"templates/**", "**/*Test.class", "**/*Tests.class", "git.properties",
|
||||||
"foo/**", "bar/**");
|
"META-INF/build-info.properties", "foo/**", "bar/**");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
Loading…
Reference in New Issue