File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed
Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -85,3 +85,4 @@ include(":system-tests:runtimes:azure-storage-transfer-consumer")
8585include(" :system-tests:runtimes:azure-storage-transfer-provider" )
8686include(" :system-tests:e2e-transfer-test:backend-service" )
8787include(" :system-tests:e2e-transfer-test:data-plane" )
88+ include(" :version-catalog" )
Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright (c) 2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
3+ *
4+ * This program and the accompanying materials are made available under the
5+ * terms of the Apache License, Version 2.0 which is available at
6+ * https://www.apache.org/licenses/LICENSE-2.0
7+ *
8+ * SPDX-License-Identifier: Apache-2.0
9+ *
10+ * Contributors:
11+ * Bayerische Motoren Werke Aktiengesellschaft (BMW AG) - initial API and implementation
12+ *
13+ */
14+
15+ plugins {
16+ `maven- publish`
17+ `version- catalog`
18+ }
19+
20+ catalog {
21+ versionCatalog {
22+ from(files(" ../gradle/libs.versions.toml" ))
23+ }
24+ }
25+
26+ publishing {
27+ publications {
28+ create<MavenPublication >(" technology-azure-version-catalog" ) {
29+ from(components[" versionCatalog" ])
30+ artifactId = " technology-azure-versions"
31+ }
32+ }
33+ }
You can’t perform that action at this time.
0 commit comments