Skip to content
Success

Changes

Summary

  1. Minor version bump of owlapi (commit: 5201359) (details)
  2. Code was not wrapped in a try-catch block (commit: b9b054c) (details)
  3. Revert "Minor version bump of owlapi" (commit: 1fd93cf) (details)
  4. Use OWLAPI 4.2.4 (the same version as in OWLAPI driver) in OWLAPI utils. (commit: d75956c) (details)
  5. [Bug #22] Fixed OWL2Java silently ignoring missing imports. Introduced a (commit: b57fc72) (details)
  6. Moved UnsupportedICException into dedicated package. (commit: 15af539) (details)
  7. Added hyperlink to Example01 (commit: 7a570ed) (details)
  8. Bumped OWLAPI version in OWL2Java and OWLAPI Utils to 5.1.3 (latest). (commit: 8f7d394) (details)
  9. Moved surefire plugin declaration into the parent pom. (commit: ad2ea6c) (details)
  10. Migrated OWLAPI Ontodriver to OWLAPI 5.1.3 (latest). (commit: c6f3a16) (details)
  11. Switched integration test reasoner to HermiT, as it has built-in support (commit: 6f37ca1) (details)
  12. Switched reasoner for OWLAPI integration tests to Openllet (a version of (commit: 99e1d53) (details)
  13. [0.9.13] Bumped version and updated release notes. (commit: 182a1d7) (details)
Commit 52013594679183b4a7f5e1880d8fdc450600e285 by noreply
Minor version bump of owlapi
(commit: 5201359)
The file was modified jopa-owl2java/pom.xml (diff)
Commit b9b054cbe3a2b72a69397458577917d954f8a262 by noreply
Code was not wrapped in a try-catch block
` visit(OWLSubClassOfAxiom axiom)` uses a try-catch block to call
`notSupported()` if a `UnsupportedICException` is thrown.
The same mechanism was _not_ used in `visit(OWLDataPropertyRangeAxiom
axiom)`, so the code never got to `notSupported()`, resulting in a
`UnsupportedICException` bubbling up instead of simply generating a
warning.
(commit: b9b054c)
The file was modified jopa-owl2java/src/main/java/cz/cvut/kbss/jopa/owl2java/IntegrityConstraintParser.java (diff)
Commit 1fd93cfb70ba7ac9f36c2c636d327da4a26260f3 by noreply
Revert "Minor version bump of owlapi"
(commit: 1fd93cf)
The file was modified jopa-owl2java/pom.xml (diff)
Commit d75956c959bb8c76db35a3396f0cd5f9a6572db3 by Martin Ledvinka
Use OWLAPI 4.2.4 (the same version as in OWLAPI driver) in OWLAPI utils.
(commit: d75956c)
The file was modified jopa-owlapi-utils/pom.xml (diff)
The file was modified jopa-owlapi-utils/src/main/java/cz/cvut/kbss/jopa/owlapi/identityreasoner/OWLAPIIdentityReasoner.java (diff)
The file was modified jopa-owlapi-utils/src/main/java/cz/cvut/kbss/jopa/owlapi/identityreasoner/OWLAPIIdentityReasonerFactory.java (diff)
Commit b57fc729071eb48e32b96286d40023ac5137fdff by Martin Ledvinka
[Bug #22] Fixed OWL2Java silently ignoring missing imports. Introduced a
new parameter, which allows to configure this behavior. By default, it
is set to false, meaning failed imports will cause the transformation
execution to fail.
(commit: b57fc72)
The file was modified jopa-owl2java/src/main/java/cz/cvut/kbss/jopa/owl2java/OWL2Java.java (diff)
The file was modified jopa-maven-plugin/src/main/java/cz/cvut/kbss/jopa/maven/OWL2JavaMojo.java (diff)
The file was modified jopa-owl2java/src/main/java/cz/cvut/kbss/jopa/owl2java/IntegrityConstraintParser.java (diff)
The file was modified jopa-owl2java/src/main/java/cz/cvut/kbss/jopa/owl2java/IntegrityConstraintClassParser.java (diff)
The file was modified jopa-owl2java/src/test/java/cz/cvut/kbss/jopa/owl2java/TestUtils.java (diff)
The file was modified jopa-owl2java/src/main/java/cz/cvut/kbss/jopa/owl2java/Utils.java (diff)
The file was modified jopa-owl2java/src/main/java/cz/cvut/kbss/jopa/owl2java/Constants.java (diff)
The file was modified jopa-owl2java/src/test/resources/mapping (diff)
The file was addedjopa-owl2java/src/main/java/cz/cvut/kbss/jopa/owl2java/exception/OWL2JavaException.java
The file was addedjopa-owl2java/src/test/resources/bad-import.owl
The file was modified jopa-owl2java/src/main/java/cz/cvut/kbss/jopa/owl2java/OWL2JavaTransformer.java (diff)
The file was modified jopa-owl2java/src/test/java/cz/cvut/kbss/jopa/owl2java/OWL2JavaTransformerTest.java (diff)
The file was addedjopa-owl2java/src/test/resources/onto-with-missing-import.owl
The file was modified jopa-owl2java/src/test/java/cz/cvut/kbss/jopa/owl2java/UtilsTest.java (diff)
The file was removedjopa-owl2java/src/main/java/cz/cvut/kbss/jopa/owl2java/UnsupportedICException.java
Commit 15af539780ae56ba26e2cf6a7dcd28291d59d537 by Martin Ledvinka
Moved UnsupportedICException into dedicated package.
(commit: 15af539)
The file was addedjopa-owl2java/src/main/java/cz/cvut/kbss/jopa/owl2java/exception/UnsupportedICException.java
Commit 7a570ed4abaecb23a8dd413cb6f39ebd930b97bf by noreply
Added hyperlink to Example01
(commit: 7a570ed)
The file was modified README.md (diff)
Commit 8f7d39491e3f58bfcd206dd518f5977f6bee0ead by Martin Ledvinka
Bumped OWLAPI version in OWL2Java and OWLAPI Utils to 5.1.3 (latest).
Also moved the OWLAPI version property into the parent pom, so that all
modules using OWLAPI use the same version.
(commit: 8f7d394)
The file was modified jopa-owl2java/src/main/java/cz/cvut/kbss/jopa/ic/impl/AbstractParticipationConstraintImpl.java (diff)
The file was modified jopa-owl2java/src/main/java/cz/cvut/kbss/jopa/owl2java/OWL2JavaTransformer.java (diff)
The file was modified jopa-owlapi-utils/pom.xml (diff)
The file was modified jopa-owl2java/src/main/java/cz/cvut/kbss/jopa/owl2java/JavaTransformer.java (diff)
The file was modified jopa-owl2java/src/main/java/cz/cvut/kbss/jopa/owl2java/ClassObjectPropertyComputer.java (diff)
The file was modified jopa-owlapi-utils/src/main/java/cz/cvut/kbss/jopa/owlapi/identityreasoner/OWLAPIIdentityReasoner.java (diff)
The file was modified jopa-owl2java/pom.xml (diff)
The file was modified pom.xml (diff)
The file was modified jopa-owl2java/src/main/java/cz/cvut/kbss/jopa/ic/api/ParticipationConstraint.java (diff)
The file was modified jopa-owl2java/src/main/java/cz/cvut/kbss/jopa/owl2java/Utils.java (diff)
The file was modified jopa-owl2java/src/main/java/cz/cvut/kbss/jopa/owl2java/ClassDataPropertyComputer.java (diff)
Commit ad2ea6c458d02fe5c47d9b6884bbfc11638d7788 by Martin Ledvinka
Moved surefire plugin declaration into the parent pom.
(commit: ad2ea6c)
The file was modified jopa-integration-tests-sesame/pom.xml (diff)
The file was modified ontodriver-owlapi/pom.xml (diff)
The file was modified jopa-integration-tests/pom.xml (diff)
The file was modified jopa-impl/pom.xml (diff)
The file was modified pom.xml (diff)
The file was modified jopa-integration-tests-owlapi/pom.xml (diff)
Commit c6f3a16a5fe32ef8362125d90272421aae37dc97 by Martin Ledvinka
Migrated OWLAPI Ontodriver to OWLAPI 5.1.3 (latest).
(commit: c6f3a16)
The file was modified ontodriver-owlapi/src/main/java/cz/cvut/kbss/ontodriver/owlapi/list/InferredSimpleListIterator.java (diff)
The file was modified jopa-owl2java/src/main/java/cz/cvut/kbss/jopa/owl2java/ClassObjectPropertyComputer.java (diff)
The file was modified ontodriver-owlapi/pom.xml (diff)
The file was modified ontodriver-owlapi/src/test/java/cz/cvut/kbss/ontodriver/owlapi/EpistemicAxiomRemoverTest.java (diff)
The file was modified ontodriver-owlapi/src/main/java/cz/cvut/kbss/ontodriver/owlapi/list/ReferencedListIterator.java (diff)
The file was modified jopa-owl2java/src/main/java/cz/cvut/kbss/jopa/owl2java/OWL2JavaTransformer.java (diff)
The file was modified ontodriver-owlapi/src/test/java/cz/cvut/kbss/ontodriver/owlapi/OwlapiAdapterTest.java (diff)
The file was modified ontodriver-owlapi/src/main/java/cz/cvut/kbss/ontodriver/owlapi/list/SimpleListIterator.java (diff)
The file was modified ontodriver-owlapi/src/main/java/cz/cvut/kbss/ontodriver/owlapi/ExplicitAxiomLoader.java (diff)
The file was modified ontodriver-owlapi/src/test/java/cz/cvut/kbss/ontodriver/owlapi/AxiomAdapterTest.java (diff)
The file was modified ontodriver-owlapi/src/main/java/cz/cvut/kbss/ontodriver/owlapi/list/InferredReferencedListIterator.java (diff)
The file was modified ontodriver-owlapi/src/test/java/cz/cvut/kbss/ontodriver/owlapi/PropertiesHandlerTest.java (diff)
The file was modified ontodriver-owlapi/src/main/java/cz/cvut/kbss/ontodriver/owlapi/util/OwlapiUtils.java (diff)
The file was modified ontodriver-owlapi/src/main/java/cz/cvut/kbss/ontodriver/owlapi/EpistemicAxiomRemover.java (diff)
The file was modified ontodriver-owlapi/src/main/java/cz/cvut/kbss/ontodriver/owlapi/InferredAxiomLoader.java (diff)
The file was modified ontodriver-owlapi/src/main/java/cz/cvut/kbss/ontodriver/owlapi/TypesHandler.java (diff)
The file was modified ontodriver-owlapi/src/main/java/cz/cvut/kbss/ontodriver/owlapi/list/ReferencedListHandler.java (diff)
The file was modified ontodriver-owlapi/src/test/java/cz/cvut/kbss/ontodriver/owlapi/MainAxiomLoaderTest.java (diff)
The file was modified ontodriver-owlapi/src/test/java/cz/cvut/kbss/ontodriver/owlapi/util/OwlapiUtilsTest.java (diff)
Commit 6f37ca1247dd5b39bf1315ce5f798771d0bbf90c by Martin Ledvinka
Switched integration test reasoner to HermiT, as it has built-in support
for OWLAPI 5.x. The tests will fail for now, but this is an issue of
OWL2Query, not JOPA.
(commit: 6f37ca1)
The file was modified jopa-integration-tests-owlapi/pom.xml (diff)
The file was modified jopa-integration-tests-owlapi/src/test/java/cz/cvut/kbss/jopa/test/environment/OwlapiPersistenceFactory.java (diff)
The file was modified jopa-integration-tests-owlapi/src/test/java/cz/cvut/kbss/jopa/test/query/owlapi/TypedQueryTest.java (diff)
Commit 99e1d53a5fb5abfd3eda59f18d4a13b65294ef86 by Martin Ledvinka
Switched reasoner for OWLAPI integration tests to Openllet (a version of
Pellet supporting OWLAPI 5). Updated to OWL2Query 0.5.0, which supports
OWLAPI 5.
(commit: 99e1d53)
The file was modified jopa-impl/src/main/java/cz/cvut/kbss/jopa/query/sparql/SparqlQueryHolder.java (diff)
The file was modified ontodriver-owlapi/pom.xml (diff)
The file was modified jopa-integration-tests-owlapi/pom.xml (diff)
The file was modified jopa-integration-tests-owlapi/src/test/java/cz/cvut/kbss/jopa/test/environment/OwlapiPersistenceFactory.java (diff)
Commit 182a1d71ac33ddc8ca3131b8d4da98f8199c6c7a by Martin Ledvinka
[0.9.13] Bumped version and updated release notes.
(commit: 182a1d7)
The file was modified jopa-integration-tests-owlapi/pom.xml (diff)
The file was modified jopa-maven-plugin/pom.xml (diff)
The file was modified jopa-api/pom.xml (diff)
The file was modified jopa-impl/pom.xml (diff)
The file was modified pom.xml (diff)
The file was modified ReleaseNotes.md (diff)
The file was modified TODO.md (diff)
The file was modified jopa-integration-tests/pom.xml (diff)
The file was modified ontodriver-api/pom.xml (diff)
The file was modified ontodriver-owlapi/pom.xml (diff)
The file was modified jopa-owlapi-utils/pom.xml (diff)
The file was modified jopa-distribution/pom.xml (diff)
The file was modified ontodriver-jena/pom.xml (diff)
The file was modified jopa-integration-tests-sesame/pom.xml (diff)
The file was modified jopa-owl2java/pom.xml (diff)
The file was modified ontodriver-sesame/pom.xml (diff)