Skip to content

Commit 673dc93

Browse files
feat: add version-catalog
1 parent 1061e21 commit 673dc93

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

settings.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,4 @@ include(":system-tests:runtimes:azure-storage-transfer-consumer")
8585
include(":system-tests:runtimes:azure-storage-transfer-provider")
8686
include(":system-tests:e2e-transfer-test:backend-service")
8787
include(":system-tests:e2e-transfer-test:data-plane")
88+
include(":version-catalog")

version-catalog/build.gradle.kts

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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+
}

0 commit comments

Comments
 (0)