Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Sawicki2011-08-03 00:55:15 +0000
committerKevin Sawicki2011-08-03 00:55:15 +0000
commit5877fc23dcb98f6eeb4190efc9fe9aeaadd0d47e (patch)
tree75c79e3ab67c80236f573c15948e1b35533172b0 /org.eclipse.egit.github.core/pom.xml
parent7e27bb9ae937502a47154f50b6950c5b19960042 (diff)
downloadegit-github-5877fc23dcb98f6eeb4190efc9fe9aeaadd0d47e.tar.gz
egit-github-5877fc23dcb98f6eeb4190efc9fe9aeaadd0d47e.tar.xz
egit-github-5877fc23dcb98f6eeb4190efc9fe9aeaadd0d47e.zip
Add explicit dependencies to POM xml file.
This currently includes: * Google GSON * Apache HttpComponents This allows the core GitHub library to be used as a traditional Java library as well as an Eclipse plug-in. Change-Id: Iff5e9d62462edda39034e4a0f4a764a4979e9c9a Signed-off-by: Kevin Sawicki <kevin@github.com>
Diffstat (limited to 'org.eclipse.egit.github.core/pom.xml')
-rw-r--r--org.eclipse.egit.github.core/pom.xml26
1 files changed, 26 insertions, 0 deletions
diff --git a/org.eclipse.egit.github.core/pom.xml b/org.eclipse.egit.github.core/pom.xml
index 01ababce..7e8c857a 100644
--- a/org.eclipse.egit.github.core/pom.xml
+++ b/org.eclipse.egit.github.core/pom.xml
@@ -22,4 +22,30 @@
<artifactId>org.eclipse.egit.github.core</artifactId>
<packaging>eclipse-plugin</packaging>
<name>Eclipse EGit GitHub API Core</name>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
+ <version>[4.1,5.0)</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpcore</artifactId>
+ <version>[4.1,5.0)</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpmime</artifactId>
+ <version>[4.1,5.0)</version>
+ <scope>compile</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.google.code.gson</groupId>
+ <artifactId>gson</artifactId>
+ <version>[1.6,2.0)</version>
+ <scope>compile</scope>
+ </dependency>
+ </dependencies>
</project>

Back to the top