This is an automated email from the ASF dual-hosted git repository.
pvillard pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git
The following commit(s) were added to refs/heads/main by this push:
new f4b406291f NIFI-15124 Removed helper scripts from Registry directory
f4b406291f is described below
commit f4b406291f71f08056ff7273ef202e7644bbf172
Author: exceptionfactory <[email protected]>
AuthorDate: Mon Oct 20 23:18:54 2025 -0500
NIFI-15124 Removed helper scripts from Registry directory
Signed-off-by: Pierre Villard <[email protected]>
This closes #10447.
---
nifi-registry/build-and-run.sh | 32 --------------------------------
nifi-registry/stop.sh | 23 -----------------------
2 files changed, 55 deletions(-)
diff --git a/nifi-registry/build-and-run.sh b/nifi-registry/build-and-run.sh
deleted file mode 100755
index 3579f2e061..0000000000
--- a/nifi-registry/build-and-run.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-#
-# 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.
-
-REGISTRY_SCRIPT=`find nifi-registry-assembly/target/ -name nifi-registry.sh |
head -1`
-REGISTRY_BIN_DIR=$(dirname "${REGISTRY_SCRIPT}")
-REGISTRY_DIR=$REGISTRY_BIN_DIR/..
-SKIP_UI=$1
-
-./${REGISTRY_SCRIPT} stop
-
-if [ "$SKIP_UI" == "skipUi" ]; then
- CMND="mvn clean install -Pcontrib-check --projects \!nifi-registry-web-ui"
-else
- CMND="mvn clean install -Pcontrib-check"
-fi
-
-# Don't actually start the registry if the build didn't succeed.
-${CMND} && ./${REGISTRY_SCRIPT} start && tail -n 500 -f
${REGISTRY_DIR}/logs/nifi-registry-app.log
diff --git a/nifi-registry/stop.sh b/nifi-registry/stop.sh
deleted file mode 100755
index 852f51412a..0000000000
--- a/nifi-registry/stop.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/sh
-#
-# 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.
-
-REGISTRY_SCRIPT=`find nifi-registry-assembly/target/ -name nifi-registry.sh |
head -1`
-REGISTRY_BIN_DIR=$(dirname "${REGISTRY_SCRIPT}")
-REGISTRY_DIR=$REGISTRY_BIN_DIR/..
-
-./${REGISTRY_SCRIPT} stop
-