-
Notifications
You must be signed in to change notification settings - Fork 0
/
publish.gradle
63 lines (53 loc) · 1.93 KB
/
publish.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
51
52
53
54
55
56
57
58
59
60
61
62
63
ext.isReleaseVersion = !(project.version =~ /-SNAPSHOT$/)
artifacts {
// archives jvmJar
archives sourcesJar
archives dokkaJar
}
signing {
required { signatory != null && project.ext.isReleaseVersion }
sign configurations.archives
}
nexusStaging {
packageGroup = "com.github.wakingrufus"
}
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 'filedb-jvm'
packaging 'jar'
group project.group
version project.version
// optionally artifactId can be defined here
description 'A library for using a filesystem as a database'
url 'https://github.com/wakingrufus/filedb'
scm {
connection 'scm:git:https://github.com/wakingrufus/filedb.git'
developerConnection 'scm:git:https://github.com/wakingrufus/filedb.git/'
url 'https://github.com/wakingrufus/filedb'
}
licenses {
license {
name 'MIT License'
url 'https://opensource.org/licenses/MIT'
}
}
developers {
developer {
id 'wakingrufus'
name 'Rufus'
email 'wakingrufus@gmail.com'
}
}
}
}
}
}