This is an automated email from the ASF dual-hosted git repository. ottlinger pushed a commit to branch addTestCoverage in repository https://gitbox.apache.org/repos/asf/creadur-tentacles.git
commit 6c7c34424a2903cd0a4c2f42d464a6ed20db5e4c Author: P. Ottlinger <[email protected]> AuthorDate: Sat Jul 4 17:40:16 2026 +0200 TENTACLES-15: Add helper script for site build --- .buildtools/site | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.buildtools/site b/.buildtools/site new file mode 100755 index 0000000..917f254 --- /dev/null +++ b/.buildtools/site @@ -0,0 +1,19 @@ +#!/bin/bash +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# DEVHINT: package build is required as site target requires access to the completed jar package. +./mvnw -B clean package site site:stage +open target/staging/index.html &
