org.apache.servicemix.kernel.gshell.core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.apache.servicemix.kernel.gshell</groupId>
<artifactId>org.apache.servicemix.kernel.gshell.core</artifactId>
<version>1.1.0</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>
<artifactId>gshell</artifactId>
<groupId>org.apache.servicemix.kernel.gshell</groupId>
<version>1.1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.servicemix.kernel.gshell</groupId>
<artifactId>org.apache.servicemix.kernel.gshell.core</artifactId>
<packaging>bundle</packaging>
<name>Apache ServiceMix Kernel :: GShell Core</name>
<version>1.1.0</version>
<description>Provides the OSGi GShell integration</description>
<build>
<resources>
<resource>
<directory>${pom.basedir}/src/main/resources</directory>
<includes>
<include>**/*</include>
</includes>
</resource>
<resource>
<filtering>true</filtering>
<directory>${pom.basedir}/src/main/filtered-resources</directory>
<includes>
<include>**/*</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<configuration>
<mainClass>Main</mainClass>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<configuration>
<instructions>
<Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName>
<Import-Package>${gshell.osgi.import}</Import-Package>
<Export-Package>${gshell.osgi.export}</Export-Package>
<Spring-Context>*;publish-context:=false;create-asynchronously:=false</Spring-Context>
</instructions>
<unpackBundle>true</unpackBundle>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>org.apache.geronimo.gshell:gshell-api</include>
<include>org.apache.geronimo.gshell:gshell-application</include>
<include>org.apache.geronimo.gshell:gshell-parser</include>
<include>org.apache.geronimo.gshell.commands:gshell-builtin</include>
<include>org.apache.geronimo.gshell.commands:gshell-file</include>
<include>org.apache.geronimo.gshell.commands:gshell-network</include>
<include>org.apache.geronimo.gshell.commands:gshell-shell</include>
<include>org.apache.geronimo.gshell.commands:gshell-ssh</include>
<include>org.apache.geronimo.gshell.commands:gshell-text</include>
<include>org.apache.geronimo.gshell.support:gshell-ansi</include>
<include>org.apache.geronimo.gshell.support:gshell-artifact</include>
<include>org.apache.geronimo.gshell.support:gshell-chronos</include>
<include>org.apache.geronimo.gshell.support:gshell-clp</include>
<include>org.apache.geronimo.gshell.support:gshell-console</include>
<include>org.apache.geronimo.gshell.support:gshell-event</include>
<include>org.apache.geronimo.gshell.support:gshell-i18n</include>
<include>org.apache.geronimo.gshell.support:gshell-interpolation</include>
<include>org.apache.geronimo.gshell.support:gshell-io</include>
<include>org.apache.geronimo.gshell.support:gshell-security</include>
<include>org.apache.geronimo.gshell.support:gshell-spring</include>
<include>org.apache.geronimo.gshell.support:gshell-terminal</include>
<include>org.apache.geronimo.gshell.support:gshell-vfs</include>
<include>org.apache.geronimo.gshell.support:gshell-vfs-meta</include>
<include>org.apache.geronimo.gshell.support:gshell-yarn</include>
<include>org.apache.geronimo.gshell.wisdom:gshell-wisdom-core</include>
<include>org.apache.geronimo.gshell.wisdom:gshell-wisdom-bootstrap</include>
<include>org.codehaus.plexus:plexus-utils</include>
<include>org.codehaus.plexus:plexus-interpolation</include>
<include>${project.groupId}:${project.artifactId}</include>
</includes>
</artifactSet>
<filters>
<filter>
<artifact>org.apache.geronimo.gshell:gshell-api</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell:gshell-application</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell:gshell-parser</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.commands:gshell-builtin</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.commands:gshell-file</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.commands:gshell-network</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.commands:gshell-shell</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.commands:gshell-ssh</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.commands:gshell-text</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.support:gshell-ansi</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.support:gshell-artifact</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.support:gshell-chronos</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.support:gshell-clp</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.support:gshell-console</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.support:gshell-event</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.support:gshell-i18n</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.support:gshell-interpolation</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.support:gshell-io</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.support:gshell-security</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.support:gshell-spring</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.support:gshell-terminal</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.support:gshell-vfs</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.support:gshell-vfs-meta</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.support:gshell-yarn</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.wisdom:gshell-wisdom-core</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.apache.geronimo.gshell.wisdom:gshell-wisdom-bootstrap</artifact>
<excludes>
<exclude>org/apache/geronimo/gshell/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.codehaus.plexus:plexus-utils</artifact>
<excludes>
<exclude>org/codehaus/plexus/**</exclude>
</excludes>
</filter>
<filter>
<artifact>org.codehaus.plexus:plexus-interpolation</artifact>
<excludes>
<exclude>org/codehaus/plexus/**</exclude>
</excludes>
</filter>
</filters>
<createSourcesJar>${createSourcesJar}</createSourcesJar>
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
<createDependencyReducedPom>true</createDependencyReducedPom>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.servicemix.kernel</groupId>
<artifactId>org.apache.servicemix.kernel.main</artifactId>
<version>1.1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.servicemix.kernel.jaas</groupId>
<artifactId>org.apache.servicemix.kernel.jaas.config</artifactId>
<version>1.1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.osgi</groupId>
<artifactId>spring-osgi-core</artifactId>
<version>1.2.0-m2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.osgi</groupId>
<artifactId>spring-osgi-io</artifactId>
<version>1.2.0-m2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>2.5.6</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>2.5.6</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>2.5.6</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>2.5.6</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.1.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.cglib</artifactId>
<version>2.1_3_1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.4.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.google.code.sshd</groupId>
<artifactId>sshd</artifactId>
<version>0.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>aopalliance</groupId>
<artifactId>aopalliance</artifactId>
<version>1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>1.4.3</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.mina</artifactId>
<version>1.1.7_1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.commons-httpclient</artifactId>
<version>3.1_1</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<artifactId>commons-codec</artifactId>
<groupId>commons-codec</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.commons-codec</artifactId>
<version>1.2_1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.commons-jexl</artifactId>
<version>1.1_1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.commons-vfs</artifactId>
<version>1.0_1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.oro</artifactId>
<version>2.0.8_1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.jline</artifactId>
<version>0.9.94_1</version>
<scope>compile</scope>
</dependency>
</dependencies>
<properties>
<gshell.osgi.export>org.apache.geronimo.gshell*;version="1.0.0.alpha-2-SNAPSHOT";-split-package:=merge-first,
org.apache.servicemix.kernel.gshell.core*,
org.codehaus.plexus.interpolation*;-split-package:=merge-first,
org.codehaus.plexus.util;-split-package:=merge-first</gshell.osgi.export>
<gshell.osgi.import>org.springframework.aop,
org.springframework.aop.framework,
org.springframework.beans.factory.annotation,
org.springframework.context.annotation,
org.springframework.osgi.service.importer,
org.aopalliance.aop,
org.apache.commons.vfs.provider.temp,
org.apache.commons.vfs.provider.ram,
jline*,
org.apache.servicemix.kernel.jaas.config;resolution:=optional,
org.apache.servicemix.kernel.version;resolution:=optional,
org.apache.servicemix.kernel.main.spi;resolution:=optional;version="1.0.0",
org.codehaus.plexus*;resolution:=optional,
com.google.code.sshd.server.keyprovider,
com.google.code.sshd.server.jaas,
org.jsecurity*;resolution:=optional,
*</gshell.osgi.import>
</properties>
</project>