Skip to content

Fix Spring bean wiring: make Neo4j-dependent beans conditional for in… #24

Fix Spring bean wiring: make Neo4j-dependent beans conditional for in…

Fix Spring bean wiring: make Neo4j-dependent beans conditional for in… #24

Workflow file for this run

name: Snapshot Deploy (Java)
on:
push:
branches: [java]
paths: ['src/**', 'pom.xml']
workflow_dispatch:
jobs:
snapshot:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '25'
cache: 'maven'
server-id: central
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: Build and test
run: mvn clean verify -B
- name: Deploy SNAPSHOT to OSSRH
env:
MAVEN_USERNAME: ${{ secrets.OSS_NEXUS_USER }}
MAVEN_PASSWORD: ${{ secrets.OSS_NEXUS_PASS }}
run: mvn deploy -DskipTests -Dgpg.skip=true -B