mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
added message when maven server listener was not fully rebuild
GitOrigin-RevId: 99f8f1e8d49756647ea36bc19059a3aba79d9a67
This commit is contained in:
committed by
intellij-monorepo-bot
parent
e7f4586963
commit
fc0d469679
@@ -129,7 +129,15 @@ public class MavenServerManager extends MavenRemoteObjectWrapper<MavenServer> im
|
||||
}
|
||||
|
||||
if (!eventListenerJar.exists()) {
|
||||
MavenLog.LOG.error("Event listener does not exist " + eventListenerJar);
|
||||
if (ApplicationManager.getApplication().isInternal()) {
|
||||
MavenLog.LOG.error("Event listener does not exist: Please run rebuild for maven modules:\n" +
|
||||
"community/plugins/maven/maven-event-listener\n" +
|
||||
"and all maven*-server* modules"
|
||||
);
|
||||
}
|
||||
else {
|
||||
MavenLog.LOG.error("Event listener does not exist " + eventListenerJar);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user