You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ff...@apache.org on 2015/09/21 05:19:24 UTC

servicemix-bundles git commit: [SM-2667]create jets3t v0.9.4 bundle

Repository: servicemix-bundles
Updated Branches:
  refs/heads/master af898d435 -> 8b55ed52f


[SM-2667]create jets3t v0.9.4 bundle


Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo
Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/8b55ed52
Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/8b55ed52
Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/8b55ed52

Branch: refs/heads/master
Commit: 8b55ed52f9a8849467503c6c02b0e3b6d9ffe46d
Parents: af898d4
Author: Freeman Fang <fr...@gmail.com>
Authored: Mon Sep 21 11:16:52 2015 +0800
Committer: Freeman Fang <fr...@gmail.com>
Committed: Mon Sep 21 11:16:52 2015 +0800

----------------------------------------------------------------------
 jets3t-0.9.4/pom.xml                            | 131 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  23 ++++
 pom.xml                                         |   1 +
 3 files changed, 155 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/8b55ed52/jets3t-0.9.4/pom.xml
----------------------------------------------------------------------
diff --git a/jets3t-0.9.4/pom.xml b/jets3t-0.9.4/pom.xml
new file mode 100644
index 0000000..255e6f7
--- /dev/null
+++ b/jets3t-0.9.4/pom.xml
@@ -0,0 +1,131 @@
+<?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>12</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.jets3t</artifactId>
+    <version>0.9.4_1-SNAPSHOT</version>
+    <packaging>bundle</packaging>
+    <name>Apache ServiceMix :: Bundles :: ${pkgArtifactId}</name>
+    <description>This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.</description>
+
+    <scm>
+        <connection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</connection>
+        <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/servicemix-bundles.git</developerConnection>
+        <url>https://git-wip-us.apache.org/repos/asf?p=servicemix-bundles.git</url>
+      <tag>HEAD</tag>
+  </scm>
+
+    <properties>
+        <pkgGroupId>net.java.dev.jets3t</pkgGroupId>
+        <pkgArtifactId>jets3t</pkgArtifactId>
+        <pkgVersion>0.9.4</pkgVersion>
+        <servicemix.osgi.export>
+            org.jets3t*;version=${project.version};-split-package:=merge-first,
+            org.apache.commons.httpclient.contrib.proxy;version=${project.version};-split-package:=merge-first,
+            contribs.mx;version=${project.version};-split-package:=merge-first
+        </servicemix.osgi.export>
+        <servicemix.osgi.import.pkg>
+            contribs.com.centerkey.utils;resolution:=optional, 
+            javax.accessibility, 
+            javax.servlet,  
+            javax.servlet.http,
+            org.apache.commons.codec*;version="[1.3,2)",
+            org.apache.http*;version="[4,5)",
+            com.jamesmurty.utils;resolution:=optional,
+            com.sun.java.browser.net;resolution:=optional,
+            org.apache.commons.logging;resolution:=optional,
+            org.bouncycastle.jce.provider;resolution:=optional,
+            org.codehaus.jackson.map;resolution:=optional,
+            org.codehaus.jackson;resolution:=optional,
+            javax.swing*;resolution:=optional,
+            sun.plugin.protocol;resolution:=optional,
+            javax.crypto*,
+            javax.activation,
+            javax.xml.namespace,
+            javax.xml.transform*,
+            javax.xml.parsers,
+            javax.management,
+            org.xml.sax*,
+            org.w3c.dom
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <optional>false</optional>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>${pkgArtifactId}</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+            <optional>false</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>
+                            <promoteTransitiveDependencies>true</promoteTransitiveDependencies>
+                            <createDependencyReducedPom>true</createDependencyReducedPom>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+        </plugins>
+    </build>
+</project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/8b55ed52/jets3t-0.9.4/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/jets3t-0.9.4/src/main/resources/OSGI-INF/bundle.info b/jets3t-0.9.4/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..d49100f
--- /dev/null
+++ b/jets3t-0.9.4/src/main/resources/OSGI-INF/bundle.info
@@ -0,0 +1,23 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URL:
+        \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    Jets3t is an open source Java toolkit for Amazon S3, Amazon CloudFront, and Google Storage Service.
+
+    The JetS3t toolkit provides Java programmers with a powerful yet simple API for interacting with storage services
+    to manage the data you store and distribute through them.
+
+    Some of the key features of the toolkit include:
+
+     * Free! With open-source licensing
+     * Easy to use
+     * Services handle all the tedious "plumbing", error retries etc. so you don't have to
+     * Includes support for multi-threaded uploads/downloads with callbacks for monitoring progress
+     * Used as the basis of all the applications in the JetS3t suite, so it has been written with application development in mind
+     * Extensible service interface.
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://jets3t.s3.amazonaws.com/toolkit/toolkit.html\u001B[0m

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/8b55ed52/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 1829f65..6480d43 100644
--- a/pom.xml
+++ b/pom.xml
@@ -43,6 +43,7 @@
 
     <modules>
         <!-- add modules for all bundles to released in the next batch here -->
+        <module>jets3t-0.9.4</module>
     </modules>
 
 </project>