Skip to content

Commit

Permalink
[0.2.0] Bumped version. Updated libraries.
Browse files Browse the repository at this point in the history
  • Loading branch information
ledsoft committed Feb 5, 2018
1 parent 73c15a2 commit 1395a8e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
1 change: 0 additions & 1 deletion README.md
Expand Up @@ -46,6 +46,5 @@ There are two ways to get JB4JSON-LD-Jackson:
<dependency>
<groupId>cz.cvut.kbss.jsonld</groupId>
<artifactId>jb4jsonld-jackson</artifactId>
<version>0.1.0</version>
</dependency>
```
8 changes: 4 additions & 4 deletions pom.xml
Expand Up @@ -6,7 +6,7 @@

<groupId>cz.cvut.kbss.jsonld</groupId>
<artifactId>jb4jsonld-jackson</artifactId>
<version>0.1.1</version>
<version>0.2.0</version>
<name>JB4JSON-LD-Jackson</name>
<description>JB4JSON-LD integration for Jackson.</description>
<url>https://github.com/kbss-cvut/jb4jsonld-jackson</url>
Expand All @@ -16,7 +16,7 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>

<cz.cvut.kbss.jb4jsonld.version>0.1.1</cz.cvut.kbss.jb4jsonld.version>
<cz.cvut.kbss.jb4jsonld.version>0.2.0</cz.cvut.kbss.jb4jsonld.version>
<junit.version>4.12</junit.version>
<org.mockito.version>1.10.19</org.mockito.version>
<ch.qos.logback.version>1.1.6</ch.qos.logback.version>
Expand Down Expand Up @@ -181,14 +181,14 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<version>3.7.0</version>
</plugin>

<!-- Code coverage plugin -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.6.201602180812</version>
<version>0.8.0</version>
<executions>
<execution>
<goals>
Expand Down
@@ -1,11 +1,11 @@
/**
* Copyright (C) 2017 Czech Technical University in Prague
*
* <p>
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any
* later version.
*
* <p>
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
Expand Down Expand Up @@ -176,9 +176,7 @@ public void testSerializeInstanceWithPluralReferenceAndBackwardReferences() thro
verifyOrganizationAttributes(org);
for (Employee emp : org.getEmployees()) {
assertTrue(contains(org.getUri(), Vocabulary.HAS_MEMBER, emp.getUri()));
// JSON-LD implementations store IRIs of other individuals as plain strings, which causes them to be parsed as strings by Sesame
// The question is: how should the serializer/parser behave in such situations?
assertTrue(contains(emp.getUri(), Vocabulary.IS_MEMBER_OF, org.getUri().toString()));
assertTrue(contains(emp.getUri(), Vocabulary.IS_MEMBER_OF, org.getUri()));
verifyUserAttributes(emp);
}
}
Expand Down

0 comments on commit 1395a8e

Please sign in to comment.