-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
91 lines (78 loc) · 2.54 KB
/
build.gradle.kts
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
plugins {
kotlin("jvm")
`maven-publish`
signing
}
dependencies {
implementation(kotlin("stdlib"))
testImplementation("org.jetbrains.kotlin:kotlin-test")
testImplementation("io.mockk:mockk:1.12.2")
}
group = "com.runetopic.cryptography"
version = "1.2.0-SNAPSHOT"
kotlin {
jvmToolchain {
languageVersion.set(JavaLanguageVersion.of(JavaVersion.VERSION_11.majorVersion))
}
}
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(JavaVersion.VERSION_11.majorVersion))
}
}
java {
withJavadocJar()
withSourcesJar()
}
publishing {
publications {
create<MavenPublication>("mavenJava") {
pom {
packaging = "jar"
name.set("Runetopic Cryptography Library")
description.set("Library to hold useful cryptographic algorithims.")
url.set("https://github.com/runetopic/cryptography")
developers {
developer {
id.set("tylert")
name.set("Tyler Telis")
email.set("[email protected]")
}
developer {
id.set("ultraviolet-jordan")
name.set("Jordan Abraham")
}
}
scm {
connection.set("scm:git:git://github.com/runetopic/cryptography.git")
developerConnection.set("scm:git:ssh://github.com/runetopic/cryptography.git")
url.set("http://github.com/rune-topic/")
}
}
artifact(tasks["javadocJar"])
artifact(tasks["sourcesJar"])
}
create<MavenPublication>("maven") {
groupId = project.group.toString()
artifactId = project.name
version = project.version.toString()
from(components["java"])
}
}
repositories {
val ossrhUsername: String by project
val ossrhPassword: String by project
maven {
val releasesRepoUrl = uri("https://s01.oss.sonatype.org/content/repositories/releases/")
val snapshotsRepoUrl = uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
url = if (version.toString().endsWith("SNAPSHOT")) snapshotsRepoUrl else releasesRepoUrl
credentials {
username = ossrhUsername
password = ossrhPassword
}
}
}
}
signing {
sign(publishing.publications["mavenJava"])
}