We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d63b1cc commit c987020Copy full SHA for c987020
.ci/scripts/published-artifacts-list.sh
@@ -0,0 +1,21 @@
1
+#!/bin/env bash
2
+
3
+targets="$(find . -type d -name 'target'|grep -v apm-agent-plugins|grep -v integration-tests|sort)"
4
5
+for t in ${targets}; do
6
+ find "${t}" \
7
+ -name '*.jar' \
8
+ | grep -v '\-sources.jar' \
9
+ | grep -v '\-tests.jar' \
10
+ | grep -v '\-javadoc.jar' \
11
+ | grep -v 'original-' \
12
+ | grep -v 'classes/' \
13
+ | grep -v 'benchmarks' \
14
+ | grep -v 'apm-agent-bootstrap' \
15
+ | grep -v 'apm-agent-builds' \
16
+ | grep -v 'apm-agent-cached-lookup-key' \
17
+ | grep -v 'apm-agent-core' \
18
+ | grep -v 'apm-agent-common' \
19
+ | grep -v 'apm-agent-lambda-layer' \
20
+ | grep -v 'apm-agent-premain'
21
+done
0 commit comments