hawtio-app
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.hawt</groupId> <artifactId>hawtio-app</artifactId> <version>3.0-M6</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>3.0-M6</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>hawtio-app</artifactId> <name>${project.artifactId}</name> <description>Hawtio :: hawtio-app</description> <dependencies> <dependency> <groupId>io.hawt</groupId> <artifactId>hawtio-embedded</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.hawt</groupId> <artifactId>hawtio-default</artifactId> <version>${project.version}</version> <type>war</type> </dependency> <dependency> <groupId>org.keycloak</groupId> <artifactId>keycloak-jetty94-adapter</artifactId> <version>${keycloak-version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j-version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j-version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <appendAssemblyId>false</appendAssemblyId> <descriptors> <descriptor>src/main/assembly/assembly.xml</descriptor> </descriptors> <archive> <manifest> <mainClass>io.hawt.app.App</mainClass> </manifest> </archive> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>