The management console is not able to run when the broker is started with the below artifact for QPid. Am I missing a dependency or configuration in the below setup?
pom.xml
<dependencies>
<dependency>
<groupId>org.apache.qpid</groupId>
<artifactId>qpid-broker</artifactId>
<version>6.0.3</version>
</dependency>
</dependencies>
java:
public static void main(String[] args) throws Exception {
Broker broker = new Broker();
broker.startup();
}
There are no errors on startup.