We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6c1fe4 commit 4b61ebaCopy full SHA for 4b61eba
1 file changed
build.gradle
@@ -78,3 +78,16 @@ ext['gradle.publish.secret'] = System.getenv('GRADLE_PLUGIN_PORTAL_SECRET')
78
79
// The tests use copies of this build.
80
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