-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbuild.gradle
185 lines (142 loc) · 4.74 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
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
import groovy.json.JsonSlurper
import org.gradle.internal.jvm.Jvm
/*
* Kotlin library
*/
plugins {
// Apply the Kotlin JVM plugin to add support for Kotlin.
id 'org.jetbrains.kotlin.jvm' version '1.4.10'
// Apply the C plugin to add support for JNI.
id 'c'
// Apply the java-library plugin for API and implementation separation.
id 'java-library'
// Fat jar
id 'com.github.johnrengelman.shadow' version '5.2.0'
id 'maven-publish'
id "com.jfrog.bintray" version "1.8.4"
// Documentation
id 'org.jetbrains.dokka' version '0.10.1'
}
ext {
boolean isMerge = isMerge()
String buildNumber = (isMerge || System.getenv('buildNumber') == null) ? '' : System.getenv('buildNumber')
buildNumber += buildNumber == '' ? '' : 'dev1'
project.version = version + buildNumber
}
apply from: rootProject.file('gradle/python.gradle.kts')
group 'org.jetbrains'
version project.findProperty('version')
repositories {
jcenter()
}
dependencies {
// Use the Kotlin JDK 8 standard library.
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
// Use the Kotlin test library.
testImplementation "org.jetbrains.kotlin:kotlin-test"
// Use the Kotlin JUnit integration.
testImplementation "org.jetbrains.kotlin:kotlin-test-junit"
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs += "-Xexperimental=org.jetbrains.numkt.core.ExperimentalNumkt"
kotlinOptions.freeCompilerArgs += "-Xuse-experimental=kotlin.Experimental"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions.freeCompilerArgs += "-Xexperimental=org.jetbrains.numkt.core.ExperimentalNumkt"
}
jar {
dependsOn shadowJar
enabled = false
}
shadowJar {
classifier = null
configurations = [project.configurations.compile]
manifest.attributes(
'Implementation-Title': project.name,
'Implementation-Version': version
)
metaInf {
from 'buildScr/python' into 'pythonScript' include('*.py')
}
}
clean.dependsOn pyClean
localInstallPyPackage.dependsOn wheelBuild
test {
dependsOn wheelBuild
systemProperty "java.library.path", file("${buildDir}/libs/ktnumpy").absolutePath
}
build.dependsOn wheelBuild
task sourceJar(type: Jar, dependsOn: classes) {
classifier 'sources'
from sourceSets.main.allSource
}
publishing {
publications {
mavenProject(MavenPublication) {
from components.java
groupId project.group
artifactId project.name
version project.version
artifact sourceJar {
classifier "sources"
}
}
}
}
bintray {
user = project.findProperty('bintrayUser') ?: System.getenv('BINTRAY_USER')
key = project.findProperty('bintrayApiKey') ?: System.getenv('BINTRAY_API_KEY')
publications = ['mavenProject']
pkg {
repo = "kotlin-datascience"
name = project.name
userOrg = 'kotlin'
licenses = ['Apache-2.0']
vcsUrl = "https://github.com/Kotlin/${project.name}"
websiteUrl = "https://github.com/Kotlin/${project.name}"
issueTrackerUrl = "https://github.com/Kotlin/${project.name}/issues"
githubRepo = "Kotlin/${project.name}"
version {
name = project.version
}
}
}
boolean isMerge() {
def branch = System.getenv("build.branch") as String
println("Current branch: $branch")
if (branch != null) {
return '/master' in branch
}
return false
}
dokka {
outputFormat = 'html'
outputDirectory = "$buildDir/dokka"
configuration {
moduleName = 'kotlin-numpy'
// Use to include or exclude non public members.
includeNonPublic = false
// Do not create index pages for empty packages
skipEmptyPackages = true
// Specifies the location of the project source code on the Web.
// If provided, Dokka generates "source" links for each declaration.
// Repeat for multiple mappings
sourceLink {
// Unix based directory relative path to the root of the project (where you execute gradle respectively).
path = "./"
// URL showing where the source code can be accessed through the web browser
url = "https://github.com/kotlin/kotlin-numpy/tree/master"
//remove src/main/kotlin if you use "./" above
// Suffix which is used to append the line number to the URL. Use #L for GitHub
lineSuffix = "#L"
}
// Used for linking to JDK documentation
jdkVersion = 8
// Disable linking to online kotlin-stdlib documentation
noStdlibLink = false
// Disable linking to online JDK documentation
noJdkLink = false
}
}