Author: jbonofre
Date: Fri Jan 20 14:36:09 2012
New Revision: 1233932
URL: http://svn.apache.org/viewvc?rev=1233932&view=rev
Log:
[SMX4-1055] Create OSGi bundle for hadoop-core 1.0.0
Added:
servicemix/smx4/bundles/trunk/hadoop-core-1.0.0/
servicemix/smx4/bundles/trunk/hadoop-core-1.0.0/pom.xml
servicemix/smx4/bundles/trunk/hadoop-core-1.0.0/src/
servicemix/smx4/bundles/trunk/hadoop-core-1.0.0/src/main/
servicemix/smx4/bundles/trunk/hadoop-core-1.0.0/src/main/resources/
servicemix/smx4/bundles/trunk/hadoop-core-1.0.0/src/main/resources/OSGI-INF/
servicemix/smx4/bundles/trunk/hadoop-core-1.0.0/src/main/resources/OSGI-INF/bundle.info
Modified:
servicemix/smx4/bundles/trunk/pom.xml
Added: servicemix/smx4/bundles/trunk/hadoop-core-1.0.0/pom.xml
URL:
http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/hadoop-core-1.0.0/pom.xml?rev=1233932&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/hadoop-core-1.0.0/pom.xml (added)
+++ servicemix/smx4/bundles/trunk/hadoop-core-1.0.0/pom.xml Fri Jan 20 14:36:09
2012
@@ -0,0 +1,138 @@
+<?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">
+
+ <!--
+
+ 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.servicemix.bundles</groupId>
+ <artifactId>bundles-pom</artifactId>
+ <version>8-SNAPSHOT</version>
+ <relativePath>../bundles-pom/pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.apache.servicemix.bundles</groupId>
+ <artifactId>org.apache.servicemix.bundles.hadoop-core</artifactId>
+ <version>1.0.0_1-SNAPSHOT</version>
+ <packaging>bundle</packaging>
+ <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
+ <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar
file.</description>
+
+ <properties>
+ <pkgGroupId>org.apache.hadoop</pkgGroupId>
+ <pkgArtifactId>hadoop-core</pkgArtifactId>
+ <pkgVersion>1.0.0</pkgVersion>
+ <servicemix.osgi.export.pkg>
+ org.apache.hadoop
+ </servicemix.osgi.export.pkg>
+ <servicemix.osgi.import.pkg>
+ com.sun.security.auth;resolution:=optional,
+ com.sun.security.auth.module;resolution:=optional,
+ sun.security*;resolution:=optional,
+ javax.crypto,
+ javax.crypto.spec,
+ javax.management,
+ javax.naming,
+ javax.naming.directory,
+ javax.net,
+ javax.net.ssl,
+ javax.security.auth,
+ javax.security.auth.callback,
+ javax.security.auth.kerberos,
+ javax.security.auth.login,
+ javax.security.auth.spi,
+ javax.security.sasl,
+ javax.servlet,
+ javax.servlet.http,
+ javax.servlet.jsp,
+ javax.xml.parsers,
+ javax.xml.transform,
+ javax.xml.transform.dom,
+ javax.xml.transform.stream,
+ org.apache.commons.cli;resolution:=optional,
+ org.apache.commons.codec.binary,
+ org.apache.commons.configuration,
+ org.apache.commons.daemon,
+ org.apache.commons.httpclient,
+ org.apache.commons.httpclient.methods,
+ org.apache.commons.lang,
+ org.apache.commons.logging;resolution:=optional,
+ org.apache.commons.logging.impl;resolution:=optional,
+ org.apache.commons.math.util,
+ org.apache.commons.net.ftp,
+ org.apache.jasper.runtime;resolution:=optional,
+ org.apache.log4j;resolution:=optional,
+ org.apache.log4j.helpers;resolution:=optional,
+ org.apache.log4j.spi;resolution:=optional,
+ org.apache.tools.ant;resolution:=optional,
+ org.apache.tools.ant.types;resolution:=optional,
+ org.codehaus.jackson,
+ org.codehaus.jackson.map,
+ org.jets3t.service*;resolution:=optional,
+ org.kosmix*;resolution:=optional,
+ org.znerd.xmlenc;resolution:=optional,
+ org.mortbay*,
+ </servicemix.osgi.import.pkg>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>${pkgGroupId}</groupId>
+ <artifactId>${pkgArtifactId}</artifactId>
+ <version>${pkgVersion}</version>
+ <optional>true</optional>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <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>${pkgGroupId}:${pkgArtifactId}</include>
+ </includes>
+ </artifactSet>
+ <filters>
+ <filter>
+
<artifact>${pkgGroupId}:${pkgArtifactId}</artifact>
+ <excludes>
+ <exclude>**</exclude>
+ </excludes>
+ </filter>
+ </filters>
+
<createDependencyReducedPom>true</createDependencyReducedPom>
+
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
Added:
servicemix/smx4/bundles/trunk/hadoop-core-1.0.0/src/main/resources/OSGI-INF/bundle.info
URL:
http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/hadoop-core-1.0.0/src/main/resources/OSGI-INF/bundle.info?rev=1233932&view=auto
==============================================================================
---
servicemix/smx4/bundles/trunk/hadoop-core-1.0.0/src/main/resources/OSGI-INF/bundle.info
(added)
+++
servicemix/smx4/bundles/trunk/hadoop-core-1.0.0/src/main/resources/OSGI-INF/bundle.info
Fri Jan 20 14:36:09 2012
@@ -0,0 +1,17 @@
+\u001B[1mSYNOPSIS\u001B[0m
+ ${project.description}
+
+ Original Maven URL:
+ \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+ The Apache⢠Hadoop⢠project develops open-source software for
reliable, scalable, distributed computing.
+
+ The Apache Hadoop software library is a framework that allows for the
distributed processing of large data sets
+ across clusters of computers using a simple programming model. It is
designed to scale up from single servers
+ to thousands of machines, each offering local computation and storage.
Rather than rely on hardware to deliver
+ high-avaiability, the library itself is designed to detect and handle
failures at the application layer, so
+ delivering a highly-availabile service on top of a cluster of computers,
each of which may be prone to failures.
+
+\u001B[1mSEE ALSO\u001B[0m
+ \u001B[36mhttp://hadoop.apache.org/\u001B[0m
Modified: servicemix/smx4/bundles/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/pom.xml?rev=1233932&r1=1233931&r2=1233932&view=diff
==============================================================================
--- servicemix/smx4/bundles/trunk/pom.xml (original)
+++ servicemix/smx4/bundles/trunk/pom.xml Fri Jan 20 14:36:09 2012
@@ -67,6 +67,7 @@
<module>scala-compiler-2.9.1</module>
<module>gae-1.6.1.1</module>
<module>guava-11.0.1</module>
+ <module>hadoop-core-1.0.0</module>
</modules>
</project>