Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI

on:
push:
branches: [ master, viz-engine ]
branches: [ master ]

jobs:
build:
Expand All @@ -12,7 +12,7 @@ jobs:
- name: Set up Maven Central Repository
uses: actions/setup-java@v5
with:
java-version: '11'
java-version: '17'
distribution: 'temurin'
server-id: central
server-username: OSSRH_USER
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v5
with:
java-version: '11'
java-version: '17'
distribution: 'temurin'
- name: Build project with Maven
run: mvn -B package --file pom.xml
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ compile 'org.gephi:graphstore:0.7.3'

## Dependencies

GraphStore is built for JRE 11+ and depends on FastUtil and Colt.
GraphStore is built for JRE 17+ and depends on FastUtil and Colt.

For a complete list of dependencies, consult the `pom.xml` file.

Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<github.global.server>github</github.global.server>
</properties>

Expand Down Expand Up @@ -293,7 +293,7 @@
<detectLinks>true</detectLinks>
<detectOfflineLinks>true</detectOfflineLinks>
<doclint>none</doclint>
<source>11</source>
<source>17</source>
</configuration>
</plugin>
</plugins>
Expand Down