Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2015-07-17 21:57:46 +0000
committerSaša Živkov2016-02-04 16:49:42 +0000
commit377616aca702144f6f79e1b376f3342ec81ec42b (patch)
tree71575ee6903dca5b777052251bdd58ce1a271107 /pom.xml
parent536db18cc62afab2d38aac5b2af73f575f40d8b6 (diff)
downloadjgit-377616aca702144f6f79e1b376f3342ec81ec42b.tar.gz
jgit-377616aca702144f6f79e1b376f3342ec81ec42b.tar.xz
jgit-377616aca702144f6f79e1b376f3342ec81ec42b.zip
Add com.google.gson 2.2.4.v201311231704 to target platform
We will use gson to implement the LFS REST API. CQ: 9966 Change-Id: I7feb6b2b8f7b736888370aad94e4c436ae6014bb Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 0393996776..054143e048 100644
--- a/pom.xml
+++ b/pom.xml
@@ -208,6 +208,7 @@
<log4j-version>1.2.15</log4j-version>
<maven-javadoc-plugin-version>2.10.1</maven-javadoc-plugin-version>
<tycho-extras-version>0.23.0</tycho-extras-version>
+ <gson-version>2.2.4</gson-version>
<!-- Properties to enable jacoco code coverage analysis -->
<sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
@@ -632,6 +633,12 @@
</exclusion>
</exclusions>
</dependency>
+
+ <dependency>
+ <groupId>com.google.code.gson</groupId>
+ <artifactId>gson</artifactId>
+ <version>${gson-version}</version>
+ </dependency>
</dependencies>
</dependencyManagement>

Back to the top