hawtio-default
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.hawt</groupId> <artifactId>hawtio-default</artifactId> <version>4.4.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <parent> <groupId>io.hawt</groupId> <artifactId>project</artifactId> <version>4.4.1</version> <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>hawtio-default</artifactId> <packaging>war</packaging> <name>${project.artifactId}</name> <description>Hawtio :: Default Web Application</description> <dependencies> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <version>${servlet-api-version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.hawt</groupId> <artifactId>hawtio-war</artifactId> <version>${project.version}</version> <!-- NOTE this WAR dependency type which enables this WAR to inherit all the plugins and content from the core hawtio-war WAR --> <type>war</type> </dependency> <dependency> <groupId>io.hawt</groupId> <artifactId>hawtio-system</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> <!-- let's mark dependencies from the WAR as provided to avoid jetty:run adding duplicates --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j-version}</version> <scope>provided</scope> </dependency> <!-- now let's add some components --> <!-- Connect plugin --> <dependency> <groupId>io.hawt</groupId> <artifactId>hawtio-local-jvm-mbean</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.hawt</groupId> <artifactId>hawtio-connect</artifactId> <version>${project.version}</version> </dependency> <!-- Log plugin --> <dependency> <groupId>io.hawt</groupId> <artifactId>hawtio-log</artifactId> <version>${project.version}</version> </dependency> <!-- override old version of commons-codec / commons-logging --> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>${commons-codec-version}</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>${commons-logging-version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-clean-plugin</artifactId> <configuration> <filesets> <fileset> <directory>${basedir}/overlays</directory> <includes> <include>**/*.*</include> </includes> <followSymlinks>false</followSymlinks> </fileset> </filesets> </configuration> </plugin> </plugins> </build> </project>