Spaces:
Running
Running
configured publishing.repositories
Browse files- bindings/java/build.gradle +10 -0
bindings/java/build.gradle
CHANGED
|
@@ -109,4 +109,14 @@ publishing {
|
|
| 109 |
}
|
| 110 |
}
|
| 111 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 112 |
}
|
|
|
|
| 109 |
}
|
| 110 |
}
|
| 111 |
}
|
| 112 |
+
|
| 113 |
+
repositories {
|
| 114 |
+
maven {
|
| 115 |
+
url = 'https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/'
|
| 116 |
+
credentials {
|
| 117 |
+
username = System.getenv("MAVEN_USERNAME")
|
| 118 |
+
password = System.getenv("MAVEN_PASSWORD")
|
| 119 |
+
}
|
| 120 |
+
}
|
| 121 |
+
}
|
| 122 |
}
|