-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmavenCentral.gradle
50 lines (41 loc) · 1.59 KB
/
mavenCentral.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
apply plugin: "signing"
signing {
sign configurations.archives
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
pom.project {
name "soyuz-validator"
packaging "jar"
// optionally artifactId can be defined here
description "bean fluent validator based on builder pattern"
url "https://github.com/thedocs-io/soyuz-validator"
scm {
url "scm:git@github.com:thedocs-io/soyuz-validator.git"
connection "scm:git@github.com:thedocs-io/soyuz-validator.git"
developerConnection "scm:git@github.com:thedocs-io/soyuz-validator.git"
}
licenses {
license {
name "MIT License"
url "https://en.wikipedia.org/wiki/MIT_License"
}
}
developers {
developer {
id "fedotxxl"
name "Fedor Belov"
}
}
}
}
}
}