-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle
117 lines (95 loc) · 3.15 KB
/
build.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
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
buildscript {
ext.kotlin_version = '1.4.21'
}
plugins {
id "org.jetbrains.dokka" version "1.4.10.2"
id 'org.jetbrains.kotlin.jvm' version '1.4.21'
}
apply plugin: 'maven'
apply plugin: 'org.jetbrains.dokka'
apply plugin: 'signing'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
testCompile 'junit:junit:4.13.1'
}
dokkaJavadoc {
outputDirectory = javadoc.destinationDir
inputs.dir 'src/main/kotlin'
}
jar {
archivesBaseName = 'npy'
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: dokkaJavadoc) {
classifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives sourcesJar, javadocJar
}
signing {
// multiline environment variables are not fun.
def signingKey = findProperty("signingKey")?.replace("\\n", "\n")
def signingPassword = findProperty("signingPassword")
useInMemoryPgpKeys(signingKey, signingPassword)
sign configurations.archives
}
uploadArchives {
repositories {
mavenDeployer {
def ossrhUsername = findProperty("ossrhUsername")
def ossrhPassword = findProperty("ossrhPassword")
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.groupId = 'org.jetbrains.bio'
pom.project {
name 'npy'
packaging 'jar'
// optionally artifactId can be defined here
description 'NPY and NPZ support for the JVM'
url 'https://github.com/JetBrains-Research/npy'
scm {
connection 'scm:git:[email protected]:JetBrains-Research/npy.git'
developerConnection 'scm:git:[email protected]:JetBrains-Research/npy.git'
url 'https://github.com/JetBrains-Research/npy'
}
licenses {
license {
name 'MIT License'
url 'https://github.com/JetBrains-Research/npy/blob/master/LICENSE'
}
}
developers {
developer {
id 'dievsky'
name 'Aleksei Dievskii'
email '[email protected]'
}
developer {
id 'slebedev'
name 'Sergei Lebedev'
email '[email protected]'
}
}
}
}
}
}
wrapper {
gradleVersion = '6.5'
}