Skip to content

Commit

Permalink
Mode gson dependency from core to web-api where it's needed:
Browse files Browse the repository at this point in the history
Signed-off-by: Gabriel Roldan <groldan@boundlessgeo.com>
  • Loading branch information
Gabriel Roldan committed Nov 29, 2018
1 parent ef45528 commit 43769be
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
16 changes: 5 additions & 11 deletions src/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<artifactId>geogig-core</artifactId>
<packaging>jar</packaging>
<name>GeoGig Core</name>
<!-- Build Instructions and Profiles Handled as a normal maven java project: mvn clean install Online tests available using:
<!-- Build Instructions and Profiles Handled as a normal maven java project: mvn clean install Online tests available using:
mvn -Ponline Corertura is configured for a test coverage report: mvn cobertura:cobertura open target/site/cobertura/index.html -->

<licenses>
Expand Down Expand Up @@ -53,11 +53,10 @@
<groupId>org.locationtech.jts</groupId>
<artifactId>jts-core</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/org.rocksdb/rocksdbjni -->
<dependency>
<groupId>org.rocksdb</groupId>
<artifactId>rocksdbjni</artifactId>
</dependency>
<dependency>
<groupId>org.rocksdb</groupId>
<artifactId>rocksdbjni</artifactId>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-opengis</artifactId>
Expand Down Expand Up @@ -132,11 +131,6 @@
<artifactId>guice-multibindings</artifactId>
</dependency>

<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>

<dependency>
<groupId>com.ning</groupId>
<artifactId>compress-lzf</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions src/web/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@
<artifactId>spring-webmvc</artifactId>
<version>${springweb.version}</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
Expand Down

0 comments on commit 43769be

Please sign in to comment.