mirror of
https://github.com/apache/maven-mvnd.git
synced 2026-01-28 01:09:30 +08:00
Merge pull request #330 from gnodet/i276
Do not run server threads as daemon as it causes problems with the exec-maven-plugin (#276)
This commit is contained in:
@@ -214,7 +214,6 @@ public class Server implements AutoCloseable, Runnable {
|
||||
static class DaemonThread extends Thread {
|
||||
public DaemonThread(Runnable target) {
|
||||
super(target);
|
||||
setDaemon(true);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user