Repository: servicemix-bundles Updated Branches: refs/heads/master 2599a6238 -> 9428f22e8
[SM-2755] Create OSGi bundle for Facebook4j 2.4.0 Project: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/repo Commit: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/commit/f9900ed1 Tree: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/tree/f9900ed1 Diff: http://git-wip-us.apache.org/repos/asf/servicemix-bundles/diff/f9900ed1 Branch: refs/heads/master Commit: f9900ed1e6c2a11eb8cc36f97504f3a1990e902a Parents: cc7d0b2 Author: Andrea Cosentino <[email protected]> Authored: Thu Dec 3 17:38:04 2015 +0100 Committer: Andrea Cosentino <[email protected]> Committed: Thu Dec 3 17:38:04 2015 +0100 ---------------------------------------------------------------------- facebook4j-2.4.0/pom.xml | 109 +++++++++++++++++++ .../src/main/resources/OSGI-INF/bundle.info | 11 ++ pom.xml | 39 +------ 3 files changed, 121 insertions(+), 38 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/f9900ed1/facebook4j-2.4.0/pom.xml ---------------------------------------------------------------------- diff --git a/facebook4j-2.4.0/pom.xml b/facebook4j-2.4.0/pom.xml new file mode 100644 index 0000000..4ecac7b --- /dev/null +++ b/facebook4j-2.4.0/pom.xml @@ -0,0 +1,109 @@ +<?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.facebook4j</artifactId> + <version>2.4.0_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>org.facebook4j</pkgGroupId> + <pkgArtifactId>facebook4j-core</pkgArtifactId> + <pkgVersion>2.4.0</pkgVersion> + <servicemix.osgi.import.pkg> + javax.crypto, + javax.crypto.spec, + javax.management, + javax.management.openmbean, + org.apache.commons.logging;resolution:=optional, + org.apache.log4j;resolution:=optional, + org.slf4j;resolution:=optional + </servicemix.osgi.import.pkg> + </properties> + + <dependencies> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>${pkgArtifactId}</artifactId> + <version>${pkgVersion}</version> + </dependency> + + <!-- sources --> + <dependency> + <groupId>${pkgGroupId}</groupId> + <artifactId>${pkgArtifactId}</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}:${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/f9900ed1/facebook4j-2.4.0/src/main/resources/OSGI-INF/bundle.info ---------------------------------------------------------------------- diff --git a/facebook4j-2.4.0/src/main/resources/OSGI-INF/bundle.info b/facebook4j-2.4.0/src/main/resources/OSGI-INF/bundle.info new file mode 100644 index 0000000..09574d8 --- /dev/null +++ b/facebook4j-2.4.0/src/main/resources/OSGI-INF/bundle.info @@ -0,0 +1,11 @@ +\u001B[1mSYNOPSIS\u001B[0m + ${project.description} + + Original Maven URL: + \u001B[33mmvn:${pkgGroupId}/${pkgArtifactId}/${pkgVersion}\u001B[0m + +\u001B[1mDESCRIPTION\u001B[0m + A Java library for the Facebook Graph API. This library provides the ease of use like Twitter4J. Facebook4J is an unofficial library. + +\u001B[1mSEE ALSO\u001B[0m + \u001B[36mhttp://facebook4j.org/en/index.html\u001B[0m http://git-wip-us.apache.org/repos/asf/servicemix-bundles/blob/f9900ed1/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 62af4da..55b8d69 100644 --- a/pom.xml +++ b/pom.xml @@ -43,44 +43,7 @@ <modules> <!-- add modules for all bundles to released in the next batch here --> - <module>spring-ldap-1.3.2.RELEASE</module> - <module>spring-ldap-2.0.0.RELEASE</module> - <module>spring-ldap-2.0.1.RELEASE</module> - <module>spring-ldap-2.0.2.RELEASE</module> - <module>spring-ldap-2.0.3.RELEASE</module> - <module>spring-ldap-2.0.4.RELEASE</module> - <module>gae-1.9.28</module> - <module>qpid-0.24</module> - <module>qpid-0.26</module> - <module>qpid-0.32</module> - <module>qpid-0.30</module> - <module>qpid-0.28</module> - <module>kafka_2.10-0.9.0.0</module> - <module>kafka-clients-0.9.0.0</module> - <module>spring-aop-4.2.3.RELEASE</module> - <module>spring-aspects-4.2.3.RELEASE</module> - <module>spring-beans-4.2.3.RELEASE</module> - <module>spring-context-4.2.3.RELEASE</module> - <module>spring-context-support-4.2.3.RELEASE</module> - <module>spring-core-4.2.3.RELEASE</module> - <module>spring-expression-4.2.3.RELEASE</module> - <module>spring-instrument-4.2.3.RELEASE</module> - <module>spring-jdbc-4.2.3.RELEASE</module> - <module>spring-jms-4.2.3.RELEASE</module> - <module>spring-messaging-4.2.3.RELEASE</module> - <module>spring-orm-4.2.3.RELEASE</module> - <module>spring-oxm-4.2.3.RELEASE</module> - <module>spring-test-4.2.3.RELEASE</module> - <module>spring-tx-4.2.3.RELEASE</module> - <module>spring-web-4.2.3.RELEASE</module> - <module>spring-webmvc-4.2.3.RELEASE</module> - <module>spring-webmvc-portlet-4.2.3.RELEASE</module> - <module>spring-websocket-4.2.3.RELEASE</module> - <module>aspectj-1.8.7</module> - <module>aspectj-1.8.6</module> - <module>aspectj-1.8.5</module> - <module>jt400-8.7</module> - <module>opensaml-2.6.5</module> + <module>facebook4j-2.4.0</module> </modules> </project>
