hawtio-karaf-terminal
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.hawt</groupId> <artifactId>hawtio-karaf-terminal</artifactId> <version>1.5.12</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/xsd/maven-4.0.0.xsd"> <parent> <artifactId>project</artifactId> <groupId>io.hawt</groupId> <version>1.5.12</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>io.hawt</groupId> <artifactId>hawtio-karaf-terminal</artifactId> <description>hawtio :: Karaf terminal plugin</description> <name>${project.artifactId}</name> <packaging>war</packaging> <properties> <!-- filtered plugin properties --> <plugin-context>/hawtio-karaf-terminal</plugin-context> <plugin-name>${project.artifactId}</plugin-name> <plugin-domain /> <plugin-scripts>app/js/gogoPlugin.js,app/js/gogo.js</plugin-scripts> </properties> <dependencies> <dependency> <groupId>io.hawt</groupId> <artifactId>hawtio-plugin-mbean</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.hawt</groupId> <artifactId>hawtio-system</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>${servlet-api-version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j-version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.gogo.runtime</artifactId> <version>${felix.gogo.version}</version> <scope>provided</scope> </dependency> <!-- karaf 4 support --> <dependency> <groupId>org.apache.karaf.shell</groupId> <artifactId>org.apache.karaf.shell.core</artifactId> <version>${karaf-version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.karaf.shell</groupId> <artifactId>org.apache.karaf.shell.console</artifactId> <version>${karaf-version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.jline</groupId> <artifactId>jline</artifactId> <version>${jline.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> <version>${osgi-version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> <version>${osgi-version}</version> <scope>provided</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>**/*.xml</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>${maven-bundle-plugin-version}</version> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> <configuration> <manifestLocation>${webapp-outdir}/META-INF</manifestLocation> <supportedProjectTypes> <supportedProjectType>jar</supportedProjectType> <supportedProjectType>bundle</supportedProjectType> <supportedProjectType>war</supportedProjectType> </supportedProjectTypes> <instructions> <Webapp-Context>${plugin-context}</Webapp-Context> <Web-ContextPath>${plugin-context}</Web-ContextPath> <Embed-Directory>WEB-INF/lib</Embed-Directory> <Embed-Dependency>*;scope=compile|runtime</Embed-Dependency> <Embed-Transitive>true</Embed-Transitive> <Export-Package /> <Import-Package> org.osgi.service.blueprint, org.apache.felix.service.command;resolution:=optional, javax.servlet, javax.servlet.http, org.ops4j.pax.web.service, org.osgi.service.blueprint.container, org.osgi.service.http, org.jline.*;version="[3.2,4)";-split-package:=merge-first, org.apache.karaf.shell.console;version="[4.0,5.0)", org.apache.karaf.shell.api.console;version="[4.0,5.0)", org.osgi.framework;version="[1.5,2)", org.osgi.framework.wiring;version="[1.0,2)", javax.management, *;resolution:=optional </Import-Package> <Bundle-ClassPath>.,WEB-INF/classes</Bundle-ClassPath> <Bundle-Name>${project.description}</Bundle-Name> <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName> <Implementation-Title>hawtio karaf terminal plugin</Implementation-Title> <Implementation-Version>${project.version}</Implementation-Version> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>${war-plugin-version}</version> <configuration> <outputFileNameMapping>@{artifactId}@-@{baseVersion}@@{dashClassifier?}@.@{extension}@</outputFileNameMapping> <packagingExcludes>**/classes/OSGI-INF/**</packagingExcludes> <failOnMissingWebXml>false</failOnMissingWebXml> <archive> <manifestFile>${webapp-outdir}/META-INF/MANIFEST.MF</manifestFile> </archive> <webResources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> <includes> <include>**/*.*</include> </includes> </resource> </webResources> </configuration> </plugin> </plugins> </build> </project>