Skip to content

Commit 31e07c1

Browse files
committed
use dapr
Signed-off-by: Cassandra Coyle <cassie@diagrid.io>
1 parent bead534 commit 31e07c1

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

client/build.gradle

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ task downloadProtoFiles {
5858
protoDir.mkdirs()
5959

6060
// Download the proto file
61-
new URL("https://raw.githubusercontent.com/microsoft/durabletask-protobuf/${ext.branch}/protos/orchestrator_service.proto")
61+
new URL("https://raw.githubusercontent.com/dapr/durabletask-protobuf/${ext.branch}/protos/orchestrator_service.proto")
6262
.withInputStream { i ->
6363
new File(protoDir, 'orchestrator_service.proto').withOutputStream { it << i }
6464
}
6565

6666
// Get and save the commit hash
6767
def commitHashFile = new File("${rootProject.projectDir}/internal/durabletask-protobuf/PROTO_SOURCE_COMMIT_HASH")
68-
def commitApiUrl = new URL("https://api.github.com/repos/microsoft/durabletask-protobuf/commits?path=protos/orchestrator_service.proto&sha=${ext.branch}&per_page=1")
68+
def commitApiUrl = new URL("https://api.github.com/repos/dapr/durabletask-protobuf/commits?path=protos/orchestrator_service.proto&sha=${ext.branch}&per_page=1")
6969
def connection = commitApiUrl.openConnection()
7070
connection.setRequestProperty('Accept', 'application/vnd.github.v3+json')
7171
def commitHash = new groovy.json.JsonSlurper().parse(connection.inputStream)[0].sha
@@ -136,7 +136,7 @@ publishing {
136136
pom {
137137
name = 'Durable Task Client SDK for Java'
138138
description = 'This package contains classes and interfaces for building Durable Task orchestrations in Java.'
139-
url = "https://github.com/microsoft/durabletask-java/tree/main/client"
139+
url = "https://github.com/dapr/durabletask-java/tree/main/client"
140140
licenses {
141141
license {
142142
name = "MIT License"
@@ -146,14 +146,14 @@ publishing {
146146
}
147147
developers {
148148
developer {
149-
id = "Microsoft"
150-
name = "Microsoft Corporation"
149+
id = "Dapr"
150+
name = "Dapr"
151151
}
152152
}
153153
scm {
154-
connection = "scm:git:https://github.com/microsoft/durabletask-java"
155-
developerConnection = "scm:git:git@github.com:microsoft/durabletask-java"
156-
url = "https://github.com/microsoft/durabletask-java/tree/main/client"
154+
connection = "scm:git:https://github.com/dapr/durabletask-java"
155+
developerConnection = "scm:git:git@github.com:dapr/durabletask-java"
156+
url = "https://github.com/dapr/durabletask-java/tree/main/client"
157157
}
158158
// use below script to include compile-only dependencies when generated pom file.
159159
// This is pain point when we onboard API docs as the missing compile-only dependencies crash the
@@ -213,4 +213,8 @@ spotbugsTest {
213213
required = true
214214
}
215215
}
216+
}
217+
218+
mavenSettings {
219+
userSettingsFileName = "../settings.xml"
216220
}

0 commit comments

Comments
 (0)