nalbion commited on
Commit
6d037ea
·
1 Parent(s): 8bb66c1

configured publishing.repositories

Browse files
Files changed (1) hide show
  1. 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
  }