Skip to content

Commit 43a6a09

Browse files
authored
fix: set path to new maven repo, pull groupid #190 (#191)
* fix: set path to new maven repo, pull groupid #190 * fix: use not Snapshot artifacts for tests * fix: use not Snapshot artifacts for tests
1 parent 44e13f4 commit 43a6a09

File tree

4 files changed

+4
-16
lines changed

4 files changed

+4
-16
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ allprojects {
3535
pom {
3636
scmUrl.set(hcScmConnection)
3737
scmConnection.set(hcScmConnection)
38-
developerId.set("Atul Shrivijay Atavale")
38+
groupId = project.group.toString()
3939
}
4040
}
4141

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#
1414

1515
group=org.eclipse.edc.huawei
16-
version=0.13.0-SNAPSHOT
16+
version=0.13.0
1717
# configure the build:
1818
# used for publishing artifacts and plugins
1919
hcScmConnection=scm:git:[email protected]:eclipse-edc/Technology-HuaweiCloud.git

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ format.version = "1.1"
33

44
[versions]
55
awaitility = "4.2.2"
6-
edc = "0.13.0-SNAPSHOT"
6+
edc = "0.13.0"
77
failsafe = "3.3.2"
88
junit = "5.12.2"
99
restAssured = "5.5.1"

settings.gradle.kts

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,28 +12,16 @@
1212
*
1313
*/
1414

15-
// this is needed to have access to snapshot builds of plugins
1615
pluginManagement {
1716
repositories {
18-
mavenLocal()
1917
maven {
20-
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
18+
url = uri("https://central.sonatype.com/repository/maven-snapshots/")
2119
}
2220
mavenCentral()
2321
gradlePluginPortal()
2422
}
2523
}
2624

27-
dependencyResolutionManagement {
28-
repositories {
29-
mavenLocal()
30-
maven {
31-
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
32-
}
33-
mavenCentral()
34-
}
35-
}
36-
3725
rootProject.name = "technology-huaweicloud"
3826
include(":launchers:e2e-test")
3927
include(":launchers:huawei-cloud-runtime")

0 commit comments

Comments
 (0)