Skip to content

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.5.0 to 3.6.0 #382

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.5.0 to 3.6.0

Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.5.0 to 3.6.0 #382

Workflow file for this run

name: Build and Test
on:
workflow_dispatch:
pull_request:
types:
- opened
- reopened
- synchronize
paths-ignore:
- 'documentation.Dockerfile'
- 'documentation.dockerignore'
- 'mkdocs.yml'
- 'docs/**'
jobs:
build-test:
uses: liquibase/build-logic/.github/workflows/[email protected]
secrets: inherit
integration-test:
needs: build-test
name: Java ${{ matrix.java }} | Neo4j ${{ matrix.neo4j_version }} (EE? ${{ matrix.enterprise }})
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11, 17, 20]
neo4j_version:
- "3.5"
- "4.0"
- "4.1"
- "4.2"
- "4.3"
- "4.4"
- "5.1"
- "5.2"
- "5.3"
- "5.4"
- "5.5"
- "5.6"
- "5.7"
- "5.8"
- "5.9"
- "5.10"
- "5.11"
enterprise:
- "true"
- "false"
steps:
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'maven'
- name: Run Tests With Maven
run: mvn --quiet --show-version --batch-mode verify
env:
NEO4J_VERSION: ${{ matrix.neo4j_version }}
ENTERPRISE: ${{ matrix.enterprise }}