Repository: marmotta Updated Branches: refs/heads/develop df0a65f71 -> 0b89c56d5
MARMOTTA-621: aligned profile with the ostrich library Project: http://git-wip-us.apache.org/repos/asf/marmotta/repo Commit: http://git-wip-us.apache.org/repos/asf/marmotta/commit/0b89c56d Tree: http://git-wip-us.apache.org/repos/asf/marmotta/tree/0b89c56d Diff: http://git-wip-us.apache.org/repos/asf/marmotta/diff/0b89c56d Branch: refs/heads/develop Commit: 0b89c56d54a0886eab2576376fccd224828554e6 Parents: df0a65f Author: Sergio Fernández <[email protected]> Authored: Tue May 3 12:47:16 2016 +0200 Committer: Sergio Fernández <[email protected]> Committed: Tue May 3 12:47:16 2016 +0200 ---------------------------------------------------------------------- libraries/pom.xml | 2 +- platform/backends/marmotta-backend-ostrich/pom.xml | 4 ++-- .../marmotta/platform/backend/ostrich/OstrichSailRepository.java | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/marmotta/blob/0b89c56d/libraries/pom.xml ---------------------------------------------------------------------- diff --git a/libraries/pom.xml b/libraries/pom.xml index b21c862..7dbcf41 100644 --- a/libraries/pom.xml +++ b/libraries/pom.xml @@ -72,7 +72,7 @@ <profiles> <profile> - <id>ostrich</id> + <id>experimental</id> <modules> <module>ostrich</module> </modules> http://git-wip-us.apache.org/repos/asf/marmotta/blob/0b89c56d/platform/backends/marmotta-backend-ostrich/pom.xml ---------------------------------------------------------------------- diff --git a/platform/backends/marmotta-backend-ostrich/pom.xml b/platform/backends/marmotta-backend-ostrich/pom.xml index c9c3e20..ada74b0 100644 --- a/platform/backends/marmotta-backend-ostrich/pom.xml +++ b/platform/backends/marmotta-backend-ostrich/pom.xml @@ -162,12 +162,12 @@ <dependency> <groupId>org.apache.marmotta</groupId> <artifactId>ostrich-model</artifactId> - <version>3.4.0-SNAPSHOT</version> + <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.marmotta</groupId> <artifactId>ostrich-client</artifactId> - <version>3.4.0-SNAPSHOT</version> + <version>${project.version}</version> </dependency> </dependencies> http://git-wip-us.apache.org/repos/asf/marmotta/blob/0b89c56d/platform/backends/marmotta-backend-ostrich/src/main/java/org/apache/marmotta/platform/backend/ostrich/OstrichSailRepository.java ---------------------------------------------------------------------- diff --git a/platform/backends/marmotta-backend-ostrich/src/main/java/org/apache/marmotta/platform/backend/ostrich/OstrichSailRepository.java b/platform/backends/marmotta-backend-ostrich/src/main/java/org/apache/marmotta/platform/backend/ostrich/OstrichSailRepository.java index 5952154..8472c95 100644 --- a/platform/backends/marmotta-backend-ostrich/src/main/java/org/apache/marmotta/platform/backend/ostrich/OstrichSailRepository.java +++ b/platform/backends/marmotta-backend-ostrich/src/main/java/org/apache/marmotta/platform/backend/ostrich/OstrichSailRepository.java @@ -42,6 +42,7 @@ import java.util.HashMap; * @author Sebastian Schaffert ([email protected]) */ public class OstrichSailRepository extends SailRepository { + private static Logger log = LoggerFactory.getLogger(OstrichSailRepository.class); public OstrichSailRepository(Sail sail) {
