Skip to content

Commit f12eda9

Browse files
committed
Remove dependency on 9.0 for now.
1 parent ca8551f commit f12eda9

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22
<groupId>uk.ac.gate.plugins</groupId>
33
<artifactId>format-bdoc</artifactId>
4-
<version>1.5-SNAPSHOT</version>
4+
<version>1.6-SNAPSHOT</version>
55
<name>Format: Bdoc</name>
66
<description>
77
Plugin to save/load GATE documents in BasicDocument
@@ -33,13 +33,13 @@
3333
<parent>
3434
<groupId>uk.ac.gate</groupId>
3535
<artifactId>gate-plugin-base</artifactId>
36-
<version>9.0-SNAPSHOT</version> <!-- eventually 9.0? -->
36+
<version>8.6.1</version>
3737
<relativePath/>
3838
</parent>
3939
<properties>
4040
<maven.compiler.source>1.8</maven.compiler.source>
4141
<maven.compiler.target>1.8</maven.compiler.target>
42-
<gate-core.version>9.0-SNAPSHOT</gate-core.version>
42+
<gate-core.version>8.6.1</gate-core.version>
4343
</properties>
4444
<licenses>
4545
<license>

src/main/java/gate/plugin/format/bdoc/BaseFormatBdoc.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
package gate.plugin.format.bdoc;
2222

23-
import gate.DirectLoadingDocumentFormat;
2423
import gate.Document;
2524
import gate.DocumentContent;
2625
import gate.DocumentFormat;
@@ -42,7 +41,9 @@
4241
*/
4342
public abstract class BaseFormatBdoc
4443
extends DocumentFormat
45-
implements DirectLoadingDocumentFormat {
44+
// TODO: once we want to make it depend on GATE version 9.0 or later!
45+
// implements DirectLoadingDocumentFormat
46+
{
4647

4748
private static final long serialVersionUID = 776942555558L;
4849
/**

0 commit comments

Comments
 (0)