File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -13,15 +13,13 @@ plugins {
1313
1414 id(" com.google.devtools.ksp" )
1515 id(" com.gradleup.shadow" )
16- id(" org.hibernate.build.maven-repo-auth" )
1716}
1817
1918group = findProperty(" group" ) as String
2019version = findProperty(" version" ) as String
2120
2221repositories {
2322 mavenCentral()
24- maven(" https://repo.slne.dev/repository/maven-proxy" ) { name = " maven-proxy" }
2523 maven(" https://repo.slne.dev/repository/maven-public" ) { name = " maven-public" }
2624}
2725
@@ -47,7 +45,13 @@ kapt {
4745
4846publishing {
4947 repositories {
50- maven(" https://repo.slne.dev/repository/maven-snapshots/" ) { name = " maven-snapshots" }
48+ maven(" https://repo.slne.dev/repository/maven-snapshots/" ) {
49+ name = " maven-snapshots"
50+ credentials {
51+ username = System .getenv(" MAVEN_USERNAME" )
52+ password = System .getenv(" MAVEN_PASSWORD" )
53+ }
54+ }
5155 }
5256
5357 publications.create<MavenPublication >(" maven" ) {
You can’t perform that action at this time.
0 commit comments