Skip to content

Commit 706946a

Browse files
committed
Fixing missing repo info
1 parent 79dba0a commit 706946a

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

core/build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,14 @@ buildscript {
2121
repositories {
2222
mavenLocal()
2323
mavenCentral()
24+
maven {
25+
name = "repsy"
26+
url = "https://repo.repsy.io/mvn/winrid/fastcomments"
27+
credentials {
28+
username = project.findProperty('repsyUsername') ?: System.getenv('REPSY_USERNAME')
29+
password = project.findProperty('repsyPassword') ?: System.getenv('REPSY_PASSWORD')
30+
}
31+
}
2432
}
2533
sourceSets {
2634
main.java.srcDirs = ['src/main/java']

pubsub/build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ repositories {
2727
}
2828
}
2929
mavenCentral()
30+
maven {
31+
name = "repsy"
32+
url = "https://repo.repsy.io/mvn/winrid/fastcomments"
33+
credentials {
34+
username = project.findProperty('repsyUsername') ?: System.getenv('REPSY_USERNAME')
35+
password = project.findProperty('repsyPassword') ?: System.getenv('REPSY_PASSWORD')
36+
}
37+
}
3038
}
3139

3240
sourceSets {

0 commit comments

Comments
 (0)