Skip to content

Update to Solr 10

Update to Solr 10 #7

Workflow file for this run

name: Build Querqy
# Build every push and every pull request
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
jdk: [ 11, 17, 18, 19, 20 ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Select JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: ${{ matrix.jdk }}
cache: 'maven'
# Run all the way to the install goal to have artifacts
# in the local maven repo. we need them for later dependency
# analysis
- name: Build
run: mvn --batch-mode install --file pom.xml
- name: Dependency Analysis
run: mvn --batch-mode dependency:tree --file pom.xml -Dverbose