Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Jetty server and deploys the plugin WAR application. From the 'artemis-console-w

```console
cd artemis-console-war
mvn jetty:run -Dskip.yarn
mvn jetty:run-war -Dskip.yarn
```

You can access the Artemis console with the sample plugin at: <http://localhost:8080/console/>. To connect to a running
Expand Down
17 changes: 6 additions & 11 deletions artemis-console-war/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,21 +97,16 @@
</plugin>

<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<groupId>org.eclipse.jetty.ee11</groupId>
<artifactId>jetty-ee11-maven-plugin</artifactId>
<version>${jetty-version}</version>
<configuration>
<deployMode>EMBED</deployMode>
<scan>10</scan>
<contextHandlers>
<contextHandler implementation="org.eclipse.jetty.maven.plugin.MavenWebAppContext">
<war>${project.build.directory}/artemis-console-war-${project.version}.war</war>
<contextPath>/console</contextPath>
</contextHandler>
</contextHandlers>
<modules>
<module>jmx</module>
</modules>
<webApp>
<war>${project.build.directory}/artemis-console-war-${project.version}.war</war>
<contextPath>/console</contextPath>
</webApp>
<systemProperties>
<hawtio.authenticationEnabled>false</hawtio.authenticationEnabled>
<hawtio.disableProxy>false</hawtio.disableProxy>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<log4j.version>2.24.3</log4j.version>
<jolokia-integration-artemis.version>0.8.0</jolokia-integration-artemis.version>
<jolokia.version>2.4.2</jolokia.version>
<jetty-version>11.0.24</jetty-version>
<jetty-version>12.1.4</jetty-version>
<corepack-version>0.34.0</corepack-version>
<node-version>v22.17.1</node-version>
<yarn-version>v4.9.2</yarn-version>
Expand Down