Skip to content

Commit

Permalink
Merge pull request #31 from evolvedbinary/feature/remove-eight
Browse files Browse the repository at this point in the history
Remove Java 8, and update for compatibility with Java 17
adamretter authored Nov 21, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
2 parents 8bfb808 + 3615d96 commit 217bb3a
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
jdk: [8,11,17]
jdk: [11,17]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# TEI Completer
[![Build Status](https://github.com/BCDH/TEI-Completer/actions/workflows/ci.yml/badge.svg)](https://github.com/BCDH/TEI-Completer/actions/workflows/ci.yml) [![Java 8+](https://img.shields.io/badge/java-8+-4c7e9f.svg)](http://java.oracle.com) [![License GPL 2](https://img.shields.io/badge/license-GPL%202-blue.svg)](https://www.gnu.org/licenses/gpl-2.0.html) [![Download](https://img.shields.io/badge/download-version%201.2.0-ff69b4.svg)](https://repo1.maven.org/maven2/org/humanistika/oxygen/tei-completer/1.2.0/tei-completer-1.2.0-oxygen-plugin.jar)
[![Build Status](https://github.com/BCDH/TEI-Completer/actions/workflows/ci.yml/badge.svg)](https://github.com/BCDH/TEI-Completer/actions/workflows/ci.yml) [![Java 11+](https://img.shields.io/badge/java-11+-4c7e9f.svg)](http://java.oracle.com) [![License GPL 2](https://img.shields.io/badge/license-GPL%202-blue.svg)](https://www.gnu.org/licenses/gpl-2.0.html) [![Download](https://img.shields.io/badge/download-version%201.2.0-ff69b4.svg)](https://repo1.maven.org/maven2/org/humanistika/oxygen/tei-completer/1.2.0/tei-completer-1.2.0-oxygen-plugin.jar)

The TEI Completer is a highly customizable plugin for setting up and activating remote-driven autocompletions of attribute values in the [oXygen XML Editor](http://www.oxygenxml.com).

@@ -225,7 +225,7 @@ function transform(content) {

# <a name="building"></a> Building from Source Code

* Requirements: Git, Apache Maven 3, Java JDK 8
* Requirements: Git, Apache Maven 3, Java JDK 11

```bash
$ git clone https://github.com/BCDH/TEI-Completer.git
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -50,10 +50,10 @@
<jaxb2-basics.version>0.13.1</jaxb2-basics.version>
<eclipse.persistence.version>2.7.10</eclipse.persistence.version>
<junit.jupiter.version>5.9.3</junit.jupiter.version>
<project.build.source>1.8</project.build.source>
<project.build.target>1.8</project.build.target>
<project.build.source>11</project.build.source>
<project.build.target>11</project.build.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<enforce.release.jdk-version>(1.8.0,1.9.0)</enforce.release.jdk-version>
<enforce.release.jdk-version>(11,17)</enforce.release.jdk-version>
</properties>

<dependencies>
@@ -82,7 +82,7 @@
<dependency>
<groupId>com.evolvedbinary.xpath</groupId>
<artifactId>xpath2-parser</artifactId>
<version>1.0</version>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>jakarta.xml.bind</groupId>

0 comments on commit 217bb3a

Please sign in to comment.