This is an automated email from the ASF dual-hosted git repository. danhaywood pushed a commit to branch v3-jpa in repository https://gitbox.apache.org/repos/asf/causeway-app-simpleapp.git
commit 3f3185b4c64082b4f1dd9c2ab36027cb103beac1 Author: Dan Haywood <[email protected]> AuthorDate: Tue Oct 28 08:08:07 2025 +0000 removes timeline config --- pom.xml | 11 ----------- serve-timeline.sh | 38 -------------------------------------- update-to-latest-nightly.sh | 15 --------------- 3 files changed, 64 deletions(-) diff --git a/pom.xml b/pom.xml index 8ca5851..d37df65 100644 --- a/pom.xml +++ b/pom.xml @@ -23,20 +23,9 @@ <datasource-proxy-spring-boot-starter.version>1.8.1</datasource-proxy-spring-boot-starter.version> <eclipselink-maven-plugin.version>3.0.2</eclipselink-maven-plugin.version> - <maven-timeline.version>1.8</maven-timeline.version> <sql-formatter.version>2.0.4</sql-formatter.version> </properties> - <build> - <extensions> - <extension> - <groupId>io.takari.maven</groupId> - <artifactId>maven-timeline</artifactId> - <version>${maven-timeline.version}</version> - </extension> - </extensions> - </build> - <dependencyManagement> <dependencies> diff --git a/serve-timeline.sh b/serve-timeline.sh deleted file mode 100644 index b4b9ff8..0000000 --- a/serve-timeline.sh +++ /dev/null @@ -1,38 +0,0 @@ -#!/usr/bin/env 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. -# -# - -# -# npm i -g serve -# npm i -g local-ssl-proxy -# - -# to use with Chromium, now need to: -# -# - re-enable WebSQLAccess (https://surajjadhav.me/blog/enabling-websql-access-in-chrome-119-and-beyond/) -# - re-enable WebSQLNonSecureContextEnabled policy and acccess via https (https://stackoverflow.com/a/73153658) -# - - -# npm i -g local-web-server - -ws --https -d target/timeline/ - diff --git a/update-to-latest-nightly.sh b/update-to-latest-nightly.sh deleted file mode 100644 index 9aeaf42..0000000 --- a/update-to-latest-nightly.sh +++ /dev/null @@ -1,15 +0,0 @@ - -if [ $# = 1 ]; then - LATEST_VERSION=$1 -else - LATEST_VERSION=$(curl -s https://raw.githubusercontent.com/apache-causeway-committers/causeway-nightly/master/mvn-snapshots/org/apache/isis/isis-bom/maven-metadata.xml | grep '<version>' | tail -1 | cut -f2 -d'>' | cut -f1 -d'<') -fi - -echo "parentVersion = $LATEST_VERSION" -mvn versions:update-parent -DparentVersion="[$LATEST_VERSION]" - -CURR=$(grep "<causeway.version>" pom.xml | head -1 | cut -d'>' -f2 | cut -d'<' -f1) -sed -i "s|<causeway.version>$CURR</causeway.version>|<causeway.version>$LATEST_VERSION</causeway.version>|g" pom.xml - -git add pom.xml -git commit -m "updates parent pom to $LATEST_VERSION"
