-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle.kts
192 lines (162 loc) · 5.66 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.jetbrains.dokka.gradle.DokkaTask
import java.net.URI
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Kotlin library project to get you started.
* For more details take a look at the 'Building Java & JVM projects' chapter in the Gradle
* User Manual available at https://docs.gradle.org/8.1.1/userguide/building_java_projects.html
*/
group = "co.cryptr"
version = "1.0.0"
plugins {
`java-library`
// Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin.
id("org.jetbrains.kotlin.jvm") version "1.8.10"
kotlin("plugin.serialization") version "1.8.10"
id("org.jetbrains.kotlinx.kover") version "0.7.0-Beta"
id("org.jetbrains.dokka") version "1.8.10"
// Apply the java-library plugin for API and implementation separation.
`maven-publish`
signing
}
repositories {
// Use Maven Central for resolving dependencies.
mavenCentral()
}
dependencies {
// Use the Kotlin JUnit 5 integration.
testImplementation("org.jetbrains.kotlin:kotlin-test-junit5")
// Use the JUnit 5 integration.
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.9.1")
testImplementation("com.github.tomakehurst:wiremock-jre8:2.35.0")
// This dependency is exported to consumers, that is to say found on their compile classpath.
api("org.apache.commons:commons-math3:3.6.1")
// This dependency is used internally, and not exposed to consumers on their own compile classpath.
implementation("com.google.guava:guava:31.1-jre")
//JSON
api("org.json:json:20230227")
// Logging
implementation("io.github.oshai:kotlin-logging-jvm:4.0.0-beta-22")
implementation(group = "ch.qos.logback", name = "logback-classic", version = "1.2.9")
// Serialization
api("org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.0")
testImplementation("org.junit.jupiter:junit-jupiter:5.8.1")
api("org.jetbrains.dokka:mathjax-plugin:1.8.10")
// Is applied for the single-module dokkaHtml task only
api("org.jetbrains.dokka:kotlin-as-java-plugin:1.8.10")
// Is applied for HTML format in multi-project builds
api("org.jetbrains.dokka:kotlin-as-java-plugin:1.8.10")
dokkaHtmlPlugin("org.jetbrains.dokka:versioning-plugin:1.8.10")
}
// Apply a specific Java toolchain to ease working on different environments.
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
withSourcesJar()
withJavadocJar()
}
tasks.jar {
manifest {
attributes(
mapOf(
"Implementation-Title" to project.name,
"Implementation-Version" to project.version
)
)
}
}
tasks.withType<DokkaTask>().configureEach {
val dokkaBaseConfiguration = """
{
"footerMessage": "© 2023 <a target=\"_blank\" href=\"https://cryptr.co\">Cryptr</a>",
"customStyleSheets": ["${file("cryptr-doc.css")}"],
"customAssets": ["${file("cryptr_logo_icon.svg")}"],
"separateInheritedMembers" : false
}
"""
val versioningConfiguration = """
{
"version": "$version",
"versionsOrdering": ["$version", "0.0.2"],
"olderVersionsDir": "documentation/version",
"renderVersionsNavigationOnAllPages": true
}
"""
pluginsMapConfiguration.set(
mapOf(
"org.jetbrains.dokka.versioning.VersioningPlugin" to versioningConfiguration,
"org.jetbrains.dokka.base.DokkaBase" to dokkaBaseConfiguration
)
)
}
tasks.named<Test>("test") {
// Use JUnit Platform for unit tests.
useJUnitPlatform()
testLogging {
showStandardStreams = true
exceptionFormat = TestExceptionFormat.FULL
}
}
publishing {
repositories {
maven {
credentials {
username = project.properties.get("NEXUS_USERNAME").toString()
password = project.properties.get("NEXUS_PASSWORD").toString()
}
name = "Cryptr"
url =
URI.create("https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/")
}
}
publications {
create<MavenPublication>("maven") {
artifactId = "cryptr-kotlin"
from(components["java"])
pom {
name.set("Cryptr Kotlin SDK")
description.set("The Cryptr Kotlin SDK allows you to access Cryptr API and services in JVM languages")
url.set("https://www.cryptr.co")
licenses {
license {
name.set("MIT License")
}
}
developers {
developer {
id.set("tiboreno")
name.set("Thibaud RENAUX")
email.set("[email protected]")
}
}
scm {
connection.set("scm:git:git://github.com/cryptr-auth/cryptr-kotlin.git")
developerConnection.set("scm:git:ssh://github.com/cryptr-auth/cryptr-kotlin.git")
url.set("https://github.com/cryptr-auth/cryptr-kotlin.git")
}
}
}
}
}
signing {
sign(publishing.publications["maven"])
}
tasks.javadoc {
if (JavaVersion.current().isJava9Compatible) {
(options as StandardJavadocDocletOptions).addBooleanOption("html5", true)
}
}
koverReport {
filters {
excludes {
classes(
"cryptr.kotlin.objects.Constants",
"cryptr.kotlin.enums.*",
"cryptr.kotlin.interfaces.*",
)
}
}
}