-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
68 lines (60 loc) · 1.55 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.bmuschko:gradle-nexus-plugin:2.3.1'
}
}
apply plugin: 'com.bmuschko.nexus'
apply plugin: 'java'
repositories {
jcenter()
}
dependencies {
testImplementation 'junit:junit:4.12'
}
archivesBaseName = 'JavaRDS'
group = "com.nexteraanalytics.r"
version = "0.2-SNAPSHOT"
modifyPom {
project {
name 'JavaRDS'
description 'Create R-style RDS data from Java'
url 'https://github.com/focusenergy/JavaRDS'
inceptionYear '2019'
scm {
url 'https://github.com/focusenergy/JavaRDS'
connection 'scm:https://github.com/focusenergy/JavaRDS.git'
developerConnection 'scm:[email protected]:focusenergy/JavaRDS.git'
}
licenses {
license {
name 'The MIT License'
url 'https://opensource.org/licenses/MIT'
distribution 'repo'
}
}
developers {
developer {
id 'kenahoo'
name 'Ken Williams'
email '[email protected]'
}
}
}
}
extraArchive {
sources = true
tests = true
javadoc = true
}
nexus {
sign = true
repositoryUrl = 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'
snapshotRepositoryUrl = 'https://oss.sonatype.org/content/repositories/snapshots/'
}
javadoc {
// Let us omit argument docs, at least for now
options.addBooleanOption('Xdoclint:none', true)
}