File tree Expand file tree Collapse file tree 1 file changed +12
-8
lines changed Expand file tree Collapse file tree 1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -35,14 +35,18 @@ java {
35
35
}
36
36
37
37
allprojects {
38
- repositories {
39
- maven(System .getenv(" REPOSILITE_URL" ) ? : " https://reposilite.silenium.dev/snapshots" ) {
40
- name = " reposilite"
41
- credentials {
42
- username =
43
- System .getenv(" REPOSILITE_USERNAME" ) ? : project.findProperty(" reposiliteUser" ) as String? ? : " "
44
- password =
45
- System .getenv(" REPOSILITE_PASSWORD" ) ? : project.findProperty(" reposilitePassword" ) as String? ? : " "
38
+ apply<MavenPublishPlugin >()
39
+
40
+ publishing {
41
+ repositories {
42
+ maven(System .getenv(" REPOSILITE_URL" ) ? : " https://reposilite.silenium.dev/snapshots" ) {
43
+ name = " reposilite"
44
+ credentials {
45
+ username =
46
+ System .getenv(" REPOSILITE_USERNAME" ) ? : project.findProperty(" reposiliteUser" ) as String? ? : " "
47
+ password =
48
+ System .getenv(" REPOSILITE_PASSWORD" ) ? : project.findProperty(" reposilitePassword" ) as String? ? : " "
49
+ }
46
50
}
47
51
}
48
52
}
You can’t perform that action at this time.
0 commit comments