-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
137 lines (113 loc) · 3.95 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
buildscript {
ext.kotlin_version = '1.4.21'
}
plugins {
id "org.jetbrains.dokka" version "1.4.10.2"
id "org.jetbrains.kotlin.jvm" version "$kotlin_version"
}
apply plugin: 'kotlin'
apply plugin: 'maven'
apply plugin: 'org.jetbrains.dokka'
apply plugin: 'signing'
sourceCompatibility = 1.8
targetCompatibility = sourceCompatibility
compileKotlin { kotlinOptions.jvmTarget = sourceCompatibility }
compileTestKotlin { kotlinOptions.jvmTarget = sourceCompatibility }
repositories {
mavenCentral()
jcenter()
}
dependencies {
compile "org.slf4j:slf4j-api:1.7.25"
compile 'com.google.guava:guava:29.0-jre'
compile 'net.sf.trove4j:trove4j:3.0.3'
compile 'org.apache.commons:commons-math3:3.6'
compile 'org.iq80.snappy:snappy:0.4'
compile 'com.indeed:util-mmap:1.0.35'
compile 'com.github.samtools:htsjdk:2.10.1'
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testCompile 'junit:junit:4.13.2'
testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
testCompile "org.apache.commons:commons-lang3:3.11"
testCompile "ch.qos.logback:logback-classic:1.2.3"
testCompile "ch.qos.logback:logback-core:1.2.3"
}
dokkaJavadoc {
outputDirectory = javadoc.destinationDir
inputs.dir 'src/main/kotlin'
}
test {
// Seems on Windows default heap size is about 256m
// and that is why tests fails with java heap size OOM
maxHeapSize = "1024m"
}
jar {
archivesBaseName = 'big'
}
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 'big'
packaging 'jar'
// optionally artifactId can be defined here
description 'BigWIG, BigBED and TDF for the JVM'
url 'https://github.com/JetBrains-Research/big'
scm {
connection 'scm:git:git@github.com:JetBrains-Research/big.git'
developerConnection 'scm:git:git@github.com:JetBrains-Research/big.git'
url 'https://github.com/JetBrains-Research/big'
}
licenses {
license {
name 'MIT License'
url 'https://github.com/JetBrains-Research/big/blob/master/LICENSE'
}
}
developers {
developer {
id 'rcherniatchik'
name 'Roman Cherniatchik'
email 'roman.cherniatchik@jetbrains.com'
}
developer {
id 'slebedev'
name 'Sergei Lebedev'
email 'sergei.a.lebedev@gmail.com'
}
}
}
}
}
}
wrapper {
gradleVersion = '6.5'
}