[tuxdroid-svn] r6069 - software_suite_v3/software/plugin/plugin-facebook/trunk
Status: Beta
Brought to you by:
ks156
From: jerome <c2m...@c2...> - 2010-02-22 15:00:50
|
Author: jerome Date: 2010-02-22 13:31:57 +0100 (Mon, 22 Feb 2010) New Revision: 6069 Modified: software_suite_v3/software/plugin/plugin-facebook/trunk/pom.xml Log: * Added new dependencies. Modified: software_suite_v3/software/plugin/plugin-facebook/trunk/pom.xml =================================================================== --- software_suite_v3/software/plugin/plugin-facebook/trunk/pom.xml 2010-02-19 12:14:54 UTC (rev 6068) +++ software_suite_v3/software/plugin/plugin-facebook/trunk/pom.xml 2010-02-22 12:31:57 UTC (rev 6069) @@ -56,11 +56,36 @@ <artifactId>facebook-java-api-schema</artifactId> <version>2.1.1</version> </dependency> - <dependency> - <groupId>commons-httpclient</groupId> - <artifactId>commons-httpclient</artifactId> - <version>3.1</version> + <dependency> + <groupId>org.lobobrowser</groupId> + <artifactId>lobo</artifactId> + <version>0.9.8</version> </dependency> + <dependency> + <groupId>org.lobobrowser</groupId> + <artifactId>lobo-pub</artifactId> + <version>0.9.8</version> + </dependency> + <dependency> + <groupId>org.lobobrowser.cobra</groupId> + <artifactId>cobra</artifactId> + <version>0.98.4</version> + </dependency> + <dependency> + <groupId>org.lobobrowser.cobra</groupId> + <artifactId>cobra-no-commons</artifactId> + <version>0.98.4</version> + </dependency> + <dependency> + <groupId>org.lobobrowser</groupId> + <artifactId>lobo-js</artifactId> + <version>0.0.1</version> + </dependency> + <dependency> + <groupId>org.lobobrowser</groupId> + <artifactId>lobo-primary</artifactId> + <version>0.0.1</version> + </dependency> </dependencies> @@ -96,7 +121,8 @@ <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> - <execution> + + <execution> <id>copy-dependencies</id> <phase>package</phase> <goals> @@ -106,6 +132,41 @@ <outputDirectory>./libraries</outputDirectory> </configuration> </execution> + + <execution> + <id>copy-dependency</id> + <phase>package</phase> + <goals> + <goal>copy</goal> + </goals> + <configuration> + <artifactItems> + <artifactItem> + <groupId>org.lobobrowser.cobra</groupId> + <artifactId>cobra</artifactId> + <version>0.98.4</version> + </artifactItem> + <artifactItem> + <groupId>org.lobobrowser.cobra</groupId> + <artifactId>cobra-no-commons</artifactId> + <version>0.98.4</version> + </artifactItem> + <artifactItem> + <groupId>org.lobobrowser</groupId> + <artifactId>lobo-js</artifactId> + <version>0.0.1</version> + </artifactItem> + <artifactItem> + <groupId>org.lobobrowser</groupId> + <artifactId>lobo-primary</artifactId> + <version>0.0.1</version> + </artifactItem> + </artifactItems> + <outputDirectory>./libraries/ext</outputDirectory> + </configuration> + </execution> + + </executions> </plugin> @@ -133,8 +194,12 @@ <exclude name="libraries/tuxdroid-plugin-java-kit*" /> <exclude name="libraries/karmalab-commons*" /> <exclude name="libraries/tuxdroid-java-api*" /> + <exclude name="libraries/lobo-js*" /> + <exclude name="libraries/lobo-primary*" /> + <exclude name="libraries/cobra*" /> </zipfileset> <zipfileset dir="." includes="executables/*" /> + <zipfileset dir="." includes="libraries/ext/*" /> </zip> </tasks> </configuration> |