fix: logbook search case insensitive Make both the logger prefix and search phrase filters case-insensitive and consistent across the file and OpenSearch backends. - FileLogStore: lowercase both sides of the clazz prefix and message search-phrase comparisons (Locale.ROOT). - OpenSearchLogStore: add case_insensitive:true to the class prefix query, which is term-level and otherwise only matches the lowercased indexed terms of the analyzed "class" field. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>

This repo contains the core elements to run a Brooklyn server, from the API and utils through to the core implementation and the REST server.
Two methods are available to build this project: within a docker container or directly with maven.
The project comes with a Dockerfile that contains everything you need to build this project. First, build the docker image:
docker build -t brooklyn:server .
Then run the build:
docker run -i --rm --name brooklyn-server -v ${HOME}/.m2:/root/.m2 -v ${PWD}:/usr/build -w /usr/build brooklyn:server mvn clean install
Simply run:
mvn clean install