build fixes

This commit is contained in:
Sander Hautvast 2015-06-10 12:00:22 +02:00
parent 1acf696b28
commit 82fffaae47
3 changed files with 5 additions and 4 deletions

1
.gitignore vendored
View file

@ -5,3 +5,4 @@
/.gradle
/.settings
/bin
/everest_data

View file

@ -20,8 +20,8 @@ repositories{
}
targetCompatibility=1.7
sourceCompatibility=1.7
targetCompatibility=1.8
sourceCompatibility=1.8
configurations {
all*.exclude group: 'commons-logging' //http://docs.spring.io/spring-framework/docs/current/spring-framework-reference/htmlsingle/#overview-not-using-commons-logging
@ -43,4 +43,4 @@ dependencies{
}
springBoot { mainClass = "nl.wehkamp.everest.App" }
springBoot { mainClass = "nl.wehkamp.everest.WebServer" }

View file

@ -21,7 +21,7 @@ public class RecordRepositoryTest {
@AfterMethod
public void teardown() throws IOException {
Uuids.removeTestValue();
Files.delete(Paths.get("everest_data", "wehkamp.nl.json"));
// Files.delete(Paths.get("everest_data", "wehkamp.nl.json"));
}
@Test