Skip to content
Snippets Groups Projects
Commit a3b22cc2 authored by Taras's avatar Taras
Browse files

Fix auth publisher script

parent 5f9df7a5
No related branches found
No related tags found
No related merge requests found
...@@ -92,35 +92,35 @@ kapt { ...@@ -92,35 +92,35 @@ kapt {
correctErrorTypes = true correctErrorTypes = true
} }
//def groupIdString = "org.futo.circles" def groupIdString = "org.futo.circles"
//def artifactIdString = "auth" def artifactIdString = "auth-gplay"
//
//afterEvaluate { afterEvaluate {
// Properties properties = new Properties() Properties properties = new Properties()
// if (rootProject.file("local.properties").exists()) { if (rootProject.file("local.properties").exists()) {
// properties.load(rootProject.file("local.properties").newDataInputStream()) properties.load(rootProject.file("local.properties").newDataInputStream())
// } }
// publishing { publishing {
// publications { publications {
// release(MavenPublication) { release(MavenPublication) {
// from components.release from components.gplayRelease
// groupId groupIdString groupId groupIdString
// artifactId artifactIdString artifactId artifactIdString
// version rootProject.ext.modules_version version rootProject.ext.modules_version
// } }
// } }
// repositories { repositories {
// maven { maven {
// url "https://gitlab.futo.org/api/v4/projects/$rootProject.ext.modules_gitlab_projectId/packages/maven" url "https://gitlab.futo.org/api/v4/projects/$rootProject.ext.modules_gitlab_projectId/packages/maven"
// name "GitLab" name "GitLab"
// credentials(HttpHeaderCredentials) { credentials(HttpHeaderCredentials) {
// name = "Private-Token" name = "Private-Token"
// value = properties.getProperty("PUBLISH_TOKEN") value = properties.getProperty("PUBLISH_TOKEN")
// } }
// authentication { authentication {
// header(HttpHeaderAuthentication) header(HttpHeaderAuthentication)
// } }
// } }
// } }
// } }
//} }
\ No newline at end of file \ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment