2017-03-30 08:46:31 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
#
|
2023-09-14 11:03:20 +03:00
|
|
|
# Copyright (c) 2015 Bosch Software Innovations GmbH and others
|
2017-03-30 08:46:31 +02:00
|
|
|
#
|
2023-09-14 11:03:20 +03:00
|
|
|
# This program and the accompanying materials are made
|
|
|
|
|
# available under the terms of the Eclipse Public License 2.0
|
|
|
|
|
# which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
|
|
|
#
|
|
|
|
|
# SPDX-License-Identifier: EPL-2.0
|
2017-03-30 08:46:31 +02:00
|
|
|
#
|
|
|
|
|
echo "# 3rd party dependencies for Release X.X.X"
|
|
|
|
|
echo ""
|
|
|
|
|
echo "## Eclipse CQs - Provided/compile"
|
|
|
|
|
echo ""
|
|
|
|
|
echo "| Group ID | Artifact ID | Version | CQ |"
|
|
|
|
|
echo "|---|---|---|---|---|"
|
|
|
|
|
cat compile.txt provided.txt|cut -d':' -f1,2,4|sed -e 's/:/|/g'|while read i; do echo "|$i| []() |";done
|
|
|
|
|
echo ""
|
|
|
|
|
echo "## Test and build dependencies"
|
|
|
|
|
echo ""
|
|
|
|
|
echo "CQ: "
|
|
|
|
|
echo ""
|
|
|
|
|
echo "| Group ID | Artifact ID | Version |"
|
|
|
|
|
echo "|---|---|---|"
|
|
|
|
|
cut -d':' -f1,2,4 test.txt|sed -e 's/:/|/g'|while read i; do echo "|$i|";done
|