| <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"> |
| |
| <!-- |
| |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.apache.felix.karaf.gshell</groupId> |
| <artifactId>gshell</artifactId> |
| <version>1.2.0-SNAPSHOT</version> |
| </parent> |
| |
| <groupId>org.apache.felix.karaf.gshell</groupId> |
| <artifactId>org.apache.felix.karaf.gshell.core</artifactId> |
| <packaging>bundle</packaging> |
| <version>1.2.0-SNAPSHOT</version> |
| <name>Apache Felix Karaf :: GShell Core</name> |
| |
| <description> |
| Provides the OSGi GShell integration |
| </description> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.felix.karaf.jaas</groupId> |
| <artifactId>org.apache.felix.karaf.jaas.config</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.servicemix.bundles</groupId> |
| <artifactId>org.apache.servicemix.bundles.cglib</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework.osgi</groupId> |
| <artifactId>spring-osgi-core</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.geronimo.gshell.commands</groupId> |
| <artifactId>gshell-builtin</artifactId> |
| <exclusions> |
| <exclusion> |
| <groupId>oro</groupId> |
| <artifactId>oro</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>commons-vfs</groupId> |
| <artifactId>commons-vfs</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.geronimo.gshell.commands</groupId> |
| <artifactId>gshell-file</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.geronimo.gshell.commands</groupId> |
| <artifactId>gshell-network</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.geronimo.gshell.commands</groupId> |
| <artifactId>gshell-shell</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.geronimo.gshell.commands</groupId> |
| <artifactId>gshell-text</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.geronimo.gshell.wisdom</groupId> |
| <artifactId>gshell-wisdom-core</artifactId> |
| <exclusions> |
| <exclusion> |
| <groupId>org.apache.geronimo.gshell.support</groupId> |
| <artifactId>gshell-ivy</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>org.apache.geronimo.gshell.support</groupId> |
| <artifactId>gshell-xstore</artifactId> |
| </exclusion> |
| <exclusion> |
| <groupId>commons-jexl</groupId> |
| <artifactId>commons-jexl</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-context</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-aop</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-jdk14</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.servicemix.bundles</groupId> |
| <artifactId>org.apache.servicemix.bundles.commons-httpclient</artifactId> |
| <exclusions> |
| <exclusion> |
| <groupId>commons-codec</groupId> |
| <artifactId>commons-codec</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.servicemix.bundles</groupId> |
| <artifactId>org.apache.servicemix.bundles.commons-codec</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.servicemix.bundles</groupId> |
| <artifactId>org.apache.servicemix.bundles.commons-jexl</artifactId> |
| <exclusions> |
| <exclusion> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.servicemix.bundles</groupId> |
| <artifactId>org.apache.servicemix.bundles.commons-vfs</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.servicemix.bundles</groupId> |
| <artifactId>org.apache.servicemix.bundles.oro</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.mina</groupId> |
| <artifactId>mina-core</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.sshd</groupId> |
| <artifactId>sshd-core</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.servicemix.bundles</groupId> |
| <artifactId>org.apache.servicemix.bundles.junit</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.servicemix.bundles</groupId> |
| <artifactId>org.apache.servicemix.bundles.jline</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>org.osgi.core</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>org.osgi.compendium</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <resources> |
| <resource> |
| <directory>${pom.basedir}/src/main/resources</directory> |
| <includes> |
| <include>**/*</include> |
| </includes> |
| </resource> |
| <resource> |
| <directory>${pom.basedir}/src/main/filtered-resources</directory> |
| <filtering>true</filtering> |
| <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> |
| 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.felix.karaf.jaas.config;resolution:=optional, |
| org.apache.felix.karaf.version;resolution:=optional, |
| org.apache.felix.karaf.main.spi;resolution:=optional;version="1.0.0", |
| org.apache.sshd.server.keyprovider, |
| org.apache.sshd.server.jaas, |
| * |
| </Import-Package> |
| <Export-Package> |
| org.apache.geronimo.gshell*;version="1.0.0.alpha-2";-split-package:=merge-first, |
| org.apache.felix.karaf.gshell.core*;version=${project.version};-split-package:=merge-first, |
| </Export-Package> |
| <Private-Package> |
| org.codehaus.plexus.interpolation*, |
| </Private-Package> |
| <Spring-Context>*;publish-context:=false;create-asynchronously:=true</Spring-Context> |
| <_versionpolicy>${bnd.version.policy}</_versionpolicy> |
| </instructions> |
| <unpackBundle>true</unpackBundle> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <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-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-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-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-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-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-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> |
| </project> |