-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
34 lines (30 loc) · 832 Bytes
/
build.gradle.kts
File metadata and controls
34 lines (30 loc) · 832 Bytes
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
import extensions.Version
plugins {
id("conventions.aggregate-coverage")
id("conventions.aggregate-javadoc")
id("conventions.aggregate-dokka")
id("conventions.aggregate-testing")
alias(libs.plugins.nexus.publish)
alias(libs.plugins.versions)
}
allprojects {
description = "Lightweight HTTP extensions for Java"
group = "com.github.mizosoft.methanol"
version = Version(
major = 1,
minor = 10,
patch = 0,
release = if (project.hasProperty("finalRelease")) Version.Release.FINAL else Version.Release.SNAPSHOT
)
repositories {
mavenCentral()
}
}
nexusPublishing {
repositories {
sonatype {
nexusUrl = uri("https://ossrh-staging-api.central.sonatype.com/service/local/")
snapshotRepositoryUrl = uri("https://central.sonatype.com/repository/maven-snapshots/")
}
}
}