You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by jb...@apache.org on 2013/10/27 21:47:43 UTC

svn commit: r1536202 - in /servicemix/smx4/bundles/trunk: ./ twitter4j-3.0.4/ twitter4j-3.0.4/src/ twitter4j-3.0.4/src/main/ twitter4j-3.0.4/src/main/resources/ twitter4j-3.0.4/src/main/resources/OSGI-INF/

Author: jbonofre
Date: Sun Oct 27 20:47:42 2013
New Revision: 1536202

URL: http://svn.apache.org/r1536202
Log:
[SMX4-1600] Create OSGi bundle for twitter4j 3.0.4

Added:
    servicemix/smx4/bundles/trunk/twitter4j-3.0.4/
    servicemix/smx4/bundles/trunk/twitter4j-3.0.4/pom.xml
    servicemix/smx4/bundles/trunk/twitter4j-3.0.4/src/
    servicemix/smx4/bundles/trunk/twitter4j-3.0.4/src/main/
    servicemix/smx4/bundles/trunk/twitter4j-3.0.4/src/main/resources/
    servicemix/smx4/bundles/trunk/twitter4j-3.0.4/src/main/resources/OSGI-INF/
    servicemix/smx4/bundles/trunk/twitter4j-3.0.4/src/main/resources/OSGI-INF/bundle.info
Modified:
    servicemix/smx4/bundles/trunk/pom.xml

Modified: servicemix/smx4/bundles/trunk/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/pom.xml?rev=1536202&r1=1536201&r2=1536202&view=diff
==============================================================================
--- servicemix/smx4/bundles/trunk/pom.xml (original)
+++ servicemix/smx4/bundles/trunk/pom.xml Sun Oct 27 20:47:42 2013
@@ -50,6 +50,7 @@
         <module>swagger-core-1.3.0</module>
         <module>swagger-jaxrs-1.3.0</module>
         <module>postgresql-9.2-1003-jdbc4</module>
+        <module>twitter4j-3.0.4</module>
     </modules>
 
 </project>

Added: servicemix/smx4/bundles/trunk/twitter4j-3.0.4/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/twitter4j-3.0.4/pom.xml?rev=1536202&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/twitter4j-3.0.4/pom.xml (added)
+++ servicemix/smx4/bundles/trunk/twitter4j-3.0.4/pom.xml Sun Oct 27 20:47:42 2013
@@ -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>10</version>
+        <relativePath>../bundles-pom/pom.xml</relativePath>
+    </parent>
+
+    <groupId>org.apache.servicemix.bundles</groupId>
+    <artifactId>org.apache.servicemix.bundles.twitter4j</artifactId>
+    <version>3.0.4_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>3.0.4</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>

Added: servicemix/smx4/bundles/trunk/twitter4j-3.0.4/src/main/resources/OSGI-INF/bundle.info
URL: http://svn.apache.org/viewvc/servicemix/smx4/bundles/trunk/twitter4j-3.0.4/src/main/resources/OSGI-INF/bundle.info?rev=1536202&view=auto
==============================================================================
--- servicemix/smx4/bundles/trunk/twitter4j-3.0.4/src/main/resources/OSGI-INF/bundle.info (added)
+++ servicemix/smx4/bundles/trunk/twitter4j-3.0.4/src/main/resources/OSGI-INF/bundle.info Sun Oct 27 20:47:42 2013
@@ -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