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/04/13 03:51:42 UTC

servicemix-bundles git commit: [SM-2494]Create OSGi bundles for Twitter4j 4.0.3

Repository: servicemix-bundles
Updated Branches:
  refs/heads/master 768dbaa43 -> 0c41b2349


[SM-2494]Create OSGi bundles for Twitter4j 4.0.3


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

Branch: refs/heads/master
Commit: 0c41b2349deff7c0bf4fba6b5e661d109ad85e23
Parents: 768dbaa
Author: Freeman Fang <fr...@gmail.com>
Authored: Mon Apr 13 09:51:26 2015 +0800
Committer: Freeman Fang <fr...@gmail.com>
Committed: Mon Apr 13 09:51:26 2015 +0800

----------------------------------------------------------------------
 pom.xml                                         |   1 +
 twitter4j-4.0.3/pom.xml                         | 124 +++++++++++++++++++
 .../src/main/resources/OSGI-INF/bundle.info     |  21 ++++
 3 files changed, 146 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/0c41b234/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 1829f65..3c6d8c7 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>twitter4j-4.0.3</module>
     </modules>
 
 </project>

http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/0c41b234/twitter4j-4.0.3/pom.xml
----------------------------------------------------------------------
diff --git a/twitter4j-4.0.3/pom.xml b/twitter4j-4.0.3/pom.xml
new file mode 100644
index 0000000..cb68daf
--- /dev/null
+++ b/twitter4j-4.0.3/pom.xml
@@ -0,0 +1,124 @@
+<?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.twitter4j</artifactId>
+    <version>4.0.3_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.twitter4j</pkgGroupId>
+        <pkgArtifactId>twitter4j</pkgArtifactId>
+        <pkgVersion>4.0.3</pkgVersion>
+        <servicemix.osgi.export.pkg>
+            twitter4j
+        </servicemix.osgi.export.pkg>
+        <servicemix.osgi.import.pkg>
+	        javax.crypto*,
+            javax.management*,
+            org.slf4j;resolution:=optional,
+            org.apache.commons.logging;resolution:=optional,
+            org.apache.log4j;resolution:=optional,
+            com.google.appengine.api.urlfetch;resolution:=optional,
+            dalvik.system;resolution:=optional,
+            twitter4j.internal.http.alternative;resolution:=optional
+        </servicemix.osgi.import.pkg>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>twitter4j-core</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>twitter4j-stream</artifactId>
+            <version>${pkgVersion}</version>
+        </dependency>
+
+        <!-- sources -->
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>twitter4j-core</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+        </dependency>
+        <dependency>
+            <groupId>${pkgGroupId}</groupId>
+            <artifactId>twitter4j-stream</artifactId>
+            <version>${pkgVersion}</version>
+            <classifier>sources</classifier>
+        </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}:twitter4j-core</include>
+                                    <include>${pkgGroupId}:twitter4j-stream</include>
+                                </includes>
+                            </artifactSet>
+                            <filters>
+                                <filter>
+                                    <artifact>${pkgGroupId}:twitter4j-core</artifact>
+                                    <excludes>
+                                        <exclude>**</exclude>
+                                    </excludes>
+                                </filter>
+                                <filter>
+                                    <artifact>${pkgGroupId}:twitter4j-stream</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/0c41b234/twitter4j-4.0.3/src/main/resources/OSGI-INF/bundle.info
----------------------------------------------------------------------
diff --git a/twitter4j-4.0.3/src/main/resources/OSGI-INF/bundle.info b/twitter4j-4.0.3/src/main/resources/OSGI-INF/bundle.info
new file mode 100644
index 0000000..5a88c94
--- /dev/null
+++ b/twitter4j-4.0.3/src/main/resources/OSGI-INF/bundle.info
@@ -0,0 +1,21 @@
+\u001B[1mSYNOPSIS\u001B[0m
+    ${project.description}
+
+    Original Maven URL:
+        \u001B[33mmvn:${pkgGroupId}/twitter4j-core\u001B[0m
+        \u001B[33mmvn:${pkgGroupId}/twitter4j-stream\u001B[0m
+
+\u001B[1mDESCRIPTION\u001B[0m
+    Twitter4J is an unofficial Java library for the Twitter API.
+    With Twitter4J, you can easily integrate your Java application with the Twitter service. Twitter4J is an unofficial
+    library.
+
+    Twitter4J is featuring:
+        * 100% Pure Java - works on any Java Platform version 1.4.2 or later
+        * Android platform and Google APP Engine ready
+        * Zero dependency : No additional jars required
+        * Built-in OAuth support
+        * Out-of-the-box gzip support
+
+\u001B[1mSEE ALSO\u001B[0m
+    \u001B[36mhttp://twitter4j.org/en/index.html\u001B[0m