You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@marmotta.apache.org by wi...@apache.org on 2014/02/11 14:21:46 UTC

git commit: MARMOTTA-24: fixed building issues

Updated Branches:
  refs/heads/ldp 02315f3f9 -> 8003b99d4


MARMOTTA-24: fixed building issues


Project: http://git-wip-us.apache.org/repos/asf/marmotta/repo
Commit: http://git-wip-us.apache.org/repos/asf/marmotta/commit/8003b99d
Tree: http://git-wip-us.apache.org/repos/asf/marmotta/tree/8003b99d
Diff: http://git-wip-us.apache.org/repos/asf/marmotta/diff/8003b99d

Branch: refs/heads/ldp
Commit: 8003b99d45ca80711d4674dc7f30b5c15df2d3e0
Parents: 02315f3
Author: Sergio Fernández <wi...@apache.org>
Authored: Tue Feb 11 12:19:17 2014 +0100
Committer: Sergio Fernández <wi...@apache.org>
Committed: Tue Feb 11 12:19:17 2014 +0100

----------------------------------------------------------------------
 platform/marmotta-ldp/pom.xml                   | 30 ++++++++++++++++++++
 .../platform/ldp/webservices/LdpWebService.java |  6 ++--
 2 files changed, 34 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/marmotta/blob/8003b99d/platform/marmotta-ldp/pom.xml
----------------------------------------------------------------------
diff --git a/platform/marmotta-ldp/pom.xml b/platform/marmotta-ldp/pom.xml
index 5984bc9..6f7986d 100644
--- a/platform/marmotta-ldp/pom.xml
+++ b/platform/marmotta-ldp/pom.xml
@@ -177,6 +177,36 @@
             <artifactId>marmotta-core</artifactId>
             <version>${project.version}</version>
         </dependency>
+        <dependency>
+            <groupId>javax.servlet</groupId>
+            <artifactId>javax.servlet-api</artifactId>
+            <version>${servlet.api.version}</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.resteasy</groupId>
+            <artifactId>resteasy-cdi</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.jboss.resteasy</groupId>
+            <artifactId>resteasy-jackson2-provider</artifactId>
+        </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.jaxrs</groupId>
+            <artifactId>jackson-jaxrs-json-provider</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>com.fasterxml.jackson.module</groupId>
+            <artifactId>jackson-module-jaxb-annotations</artifactId>
+        </dependency>
         
         <!-- testing -->
         <dependency>

http://git-wip-us.apache.org/repos/asf/marmotta/blob/8003b99d/platform/marmotta-ldp/src/main/java/org/apache/marmotta/platform/ldp/webservices/LdpWebService.java
----------------------------------------------------------------------
diff --git a/platform/marmotta-ldp/src/main/java/org/apache/marmotta/platform/ldp/webservices/LdpWebService.java b/platform/marmotta-ldp/src/main/java/org/apache/marmotta/platform/ldp/webservices/LdpWebService.java
index 4259daf..324de83 100644
--- a/platform/marmotta-ldp/src/main/java/org/apache/marmotta/platform/ldp/webservices/LdpWebService.java
+++ b/platform/marmotta-ldp/src/main/java/org/apache/marmotta/platform/ldp/webservices/LdpWebService.java
@@ -17,11 +17,13 @@
  */
 package org.apache.marmotta.platform.ldp.webservices;
 
+import org.apache.marmotta.platform.core.api.config.ConfigurationService;
+import org.slf4j.Logger;
+
 import javax.enterprise.context.ApplicationScoped;
+import javax.inject.Inject;
 import javax.ws.rs.Path;
 
-import org.slf4j.Logger;
-
 /**
  * Linked Data Platform web services
  *