Skip to content

Commit e70678a

Browse files
Merge pull request #1093 from ontodev/owlapi4525
Migrate to OWL API 4.5.25 (not released yet)
2 parents 1341448 + 613db40 commit e70678a

File tree

4 files changed

+22
-9
lines changed

4 files changed

+22
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
- Upgrade OWLAPI to 4.5.25 [#1093]
10+
- Fixing OBO Serialiser erroneous logging [#1088]
11+
- Fixing OBO Serialiser bug where built in vocabulary was introduced as annotation properties [#1089]
912

1013
### Added
1114
- Subset method added to [`extract`] [#1000]
@@ -14,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1417
- Restore logging details for CLI [#1091]
1518

1619
## [1.9.2] - 2023-02-09
20+
- Upgrade OWLAPI to 4.5.24 [#1086]
1721

1822
### Changed
1923
- Upgrade OWLAPI to 4.5.24 [#1086]

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165
<dependency>
166166
<groupId>net.sourceforge.owlapi</groupId>
167167
<artifactId>owlapi-api</artifactId>
168-
<version>4.5.24</version>
168+
<version>4.5.25</version>
169169
<exclusions>
170170
<exclusion>
171171
<groupId>com.google.code.findbugs</groupId>
@@ -176,7 +176,7 @@
176176
<dependency>
177177
<groupId>net.sourceforge.owlapi</groupId>
178178
<artifactId>owlapi-apibinding</artifactId>
179-
<version>4.5.24</version>
179+
<version>4.5.25</version>
180180
<exclusions>
181181
<exclusion>
182182
<groupId>com.google.code.findbugs</groupId>
@@ -187,7 +187,7 @@
187187
<dependency>
188188
<groupId>net.sourceforge.owlapi</groupId>
189189
<artifactId>owlapi-rio</artifactId>
190-
<version>4.5.24</version>
190+
<version>4.5.25</version>
191191
<exclusions>
192192
<exclusion>
193193
<groupId>com.google.code.findbugs</groupId>

robot-command/src/test/java/org/obolibrary/robot/CommandLineIT.java

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,9 +231,18 @@ public void testExecute() throws Exception {
231231
}
232232
runCommand(command);
233233
}
234-
// Regression test for dropped axiom:
234+
235+
// Regression test for dropped axiom should fail:
235236
// https://github.com/ontodev/robot/issues/98
236-
runCommand("robot convert -i dropped_axiom.owl -o " + "results/dropped_axiom.owl");
237+
boolean passed = true;
238+
try {
239+
runCommand("robot convert -i dropped_axiom.owl -o " + "results/dropped_axiom.owl");
240+
} catch (Exception e) {
241+
passed = false;
242+
}
243+
if (passed) {
244+
throw new Exception("dropped_axiom.owl test should fail but it passed");
245+
}
237246

238247
compareResults();
239248
}

robot-core/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
<excludes></excludes>
6060
-->
6161
<ignoreMissingClassesByRegularExpressions>
62-
<!-- To handle sesame-rio-api-2.7.16.jar -> rdf4j-rio-api-2.4.2.jar lib change on owlapi 4.5.24 upgrade: -->
62+
<!-- To handle sesame-rio-api-2.7.16.jar -> rdf4j-rio-api-2.4.2.jar lib change on owlapi 4.5.25 upgrade: -->
6363
<!-- This ignore can be removed in consecutive releases -->
6464
<ignoreMissingClassesByRegularExpression>org.openrdf.rio.*</ignoreMissingClassesByRegularExpression>
6565
</ignoreMissingClassesByRegularExpressions>
@@ -86,7 +86,7 @@
8686
<dependency>
8787
<groupId>net.sourceforge.owlapi</groupId>
8888
<artifactId>owlapi-api</artifactId>
89-
<version>4.5.24</version>
89+
<version>4.5.25</version>
9090
<exclusions>
9191
<exclusion>
9292
<groupId>com.google.code.findbugs</groupId>
@@ -97,7 +97,7 @@
9797
<dependency>
9898
<groupId>net.sourceforge.owlapi</groupId>
9999
<artifactId>owlapi-apibinding</artifactId>
100-
<version>4.5.24</version>
100+
<version>4.5.25</version>
101101
<exclusions>
102102
<exclusion>
103103
<groupId>com.google.code.findbugs</groupId>
@@ -108,7 +108,7 @@
108108
<dependency>
109109
<groupId>net.sourceforge.owlapi</groupId>
110110
<artifactId>owlapi-rio</artifactId>
111-
<version>4.5.24</version>
111+
<version>4.5.25</version>
112112
<exclusions>
113113
<exclusion>
114114
<groupId>com.google.code.findbugs</groupId>

0 commit comments

Comments
 (0)