Repository: olingo-odata4 Updated Branches: refs/heads/OLINGO-834_Filter_Parser 53d2e8bb8 -> b0866014d
[OLINGO-834] Shift dependecies from commons to core The dependencies were not used in the commons part of the library Project: http://git-wip-us.apache.org/repos/asf/olingo-odata4/repo Commit: http://git-wip-us.apache.org/repos/asf/olingo-odata4/commit/b0866014 Tree: http://git-wip-us.apache.org/repos/asf/olingo-odata4/tree/b0866014 Diff: http://git-wip-us.apache.org/repos/asf/olingo-odata4/diff/b0866014 Branch: refs/heads/OLINGO-834_Filter_Parser Commit: b0866014df9d876cb44ea1f9632cab5ca95be7f5 Parents: 53d2e8b Author: Christian Amend <[email protected]> Authored: Fri Jan 8 13:12:45 2016 +0100 Committer: Christian Amend <[email protected]> Committed: Fri Jan 8 13:12:45 2016 +0100 ---------------------------------------------------------------------- lib/client-core/pom.xml | 21 +++++++++++++++++++++ lib/commons-core/pom.xml | 22 ---------------------- lib/server-core/pom.xml | 14 ++++++++++++++ 3 files changed, 35 insertions(+), 22 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/olingo-odata4/blob/b0866014/lib/client-core/pom.xml ---------------------------------------------------------------------- diff --git a/lib/client-core/pom.xml b/lib/client-core/pom.xml index a9c7f7a..092ffac 100644 --- a/lib/client-core/pom.xml +++ b/lib/client-core/pom.xml @@ -46,6 +46,27 @@ <version>${project.version}</version> </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-annotations</artifactId> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.dataformat</groupId> + <artifactId>jackson-dataformat-xml</artifactId> + </dependency> + <dependency> + <groupId>com.fasterxml</groupId> + <artifactId>aalto-xml</artifactId> + </dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> http://git-wip-us.apache.org/repos/asf/olingo-odata4/blob/b0866014/lib/commons-core/pom.xml ---------------------------------------------------------------------- diff --git a/lib/commons-core/pom.xml b/lib/commons-core/pom.xml index 2c069f9..e9c0179 100644 --- a/lib/commons-core/pom.xml +++ b/lib/commons-core/pom.xml @@ -46,27 +46,6 @@ </dependency> <dependency> - <groupId>com.fasterxml.jackson.core</groupId> - <artifactId>jackson-core</artifactId> - </dependency> - <dependency> - <groupId>com.fasterxml.jackson.core</groupId> - <artifactId>jackson-databind</artifactId> - </dependency> - <dependency> - <groupId>com.fasterxml.jackson.core</groupId> - <artifactId>jackson-annotations</artifactId> - </dependency> - <dependency> - <groupId>com.fasterxml.jackson.dataformat</groupId> - <artifactId>jackson-dataformat-xml</artifactId> - </dependency> - <dependency> - <groupId>com.fasterxml</groupId> - <artifactId>aalto-xml</artifactId> - </dependency> - - <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> @@ -99,7 +78,6 @@ org.apache.olingo.commons.core.edm, org.apache.olingo.commons.core.edm.provider, org.apache.olingo.commons.core.edm.primitivetype, - org.apache.olingo.commons.core.serialization </Export-Package> <Import-Package> * http://git-wip-us.apache.org/repos/asf/olingo-odata4/blob/b0866014/lib/server-core/pom.xml ---------------------------------------------------------------------- diff --git a/lib/server-core/pom.xml b/lib/server-core/pom.xml index 6e22690..0c329d9 100644 --- a/lib/server-core/pom.xml +++ b/lib/server-core/pom.xml @@ -57,6 +57,20 @@ <scope>test</scope> </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + </dependency> + + <dependency> + <groupId>com.fasterxml</groupId> + <artifactId>aalto-xml</artifactId> + </dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId>
