parent
e4adc7da33
commit
9cced069a0
|
@ -477,7 +477,9 @@ public abstract class AbstractRunMojo extends AbstractDependencyFilterMojo {
|
||||||
}
|
}
|
||||||
|
|
||||||
static ArgFile create(CharSequence content) throws IOException {
|
static ArgFile create(CharSequence content) throws IOException {
|
||||||
ArgFile argFile = new ArgFile(Files.createTempFile("spring-boot-", ".argfile"));
|
Path tempFile = Files.createTempFile("spring-boot-", ".argfile");
|
||||||
|
tempFile.toFile().deleteOnExit();
|
||||||
|
ArgFile argFile = new ArgFile(tempFile);
|
||||||
argFile.write(content);
|
argFile.write(content);
|
||||||
return argFile;
|
return argFile;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue