Skip to content

Commit 4b61eba

Browse files
authored
Update build.gradle
1 parent c6c1fe4 commit 4b61eba

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

build.gradle

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,16 @@ ext['gradle.publish.secret'] = System.getenv('GRADLE_PLUGIN_PORTAL_SECRET')
7878

7979
// The tests use copies of this build.
8080
tasks.integrationTest.inputs.files file('test-projects')
81+
82+
publishing {
83+
repositories {
84+
maven {
85+
name = "AzureArtifacts"
86+
url = uri("https://pkgs.dev.azure.com/hmcts/Artifacts/_packaging/hmcts-lib/maven/v1")
87+
credentials {
88+
username = System.getenv("AZURE_DEVOPS_ARTIFACT_USERNAME")
89+
password = System.getenv("AZURE_DEVOPS_ARTIFACT_TOKEN")
90+
}
91+
}
92+
}
93+
}

0 commit comments

Comments
 (0)