forked from amazon-ion/ion-element-kotlin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
179 lines (154 loc) · 5.12 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
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
// Documentation for using Gradle with Kotlin is here: https://kotlinlang.org/docs/reference/using-gradle.html
plugins {
id 'java-library'
id 'org.jetbrains.kotlin.jvm' version '1.6.20'
id 'maven-publish'
id 'signing'
id 'org.jetbrains.dokka' version '1.6.20'
id 'jacoco'
id 'org.jetbrains.kotlinx.binary-compatibility-validator' version '0.9.0'
id "org.jlleitschuh.gradle.ktlint" version "10.3.0"
}
group = "com.amazon.ion"
version = "1.1.0"
ext.isReleaseVersion = !version.endsWith("SNAPSHOT")
repositories {
mavenCentral()
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions {
jvmTarget = "1.8"
apiVersion = "1.3"
languageVersion = "1.4" // Can be read by 1.3 compiler, so consumers on kotlin 1.3 are still supported.
freeCompilerArgs = [
"-opt-in=kotlin.RequiresOptIn" // Using RequiresOptIn requires opt-in itself, at least in kotlin-1.4
]
}
}
kotlin {
explicitApi = 'strict'
}
dependencies {
api 'com.amazon.ion:ion-java:[1.4.0,)'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
implementation 'org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.4'
testImplementation 'org.jetbrains.kotlin:kotlin-test'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.6.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
}
test {
useJUnitPlatform()
jacoco {
destinationFile = file("${buildDir}/jacoco/test.exec")
}
}
task sourcesJar(type: Jar) {
from "src"
archiveClassifier.set("sources")
}
task javadocJar(type: Jar, dependsOn: dokkaJavadoc) {
classifier 'javadoc'
from dokkaJavadoc.outputDirectory
}
java {
sourceSets {
main.java.srcDirs = ["src"]
main.resources.srcDirs = ["resources"]
test.java.srcDirs = ["test"]
test.resources.srcDirs = ["test-resources"]
}
}
jacocoTestReport {
// Adjust the output of the test report
reports {
xml.enabled true
csv.enabled false
}
}
tasks.jacocoTestReport {
dependsOn(tasks.test) // tests are required to run before generating the report
}
ktlint {
version = "0.45.2"
outputToConsole = true
}
plugins.withId('org.jetbrains.kotlin.jvm', { _ ->
sourceSets {
main.kotlin.srcDirs = ["src"]
test.kotlin.srcDirs = ["test"]
}
})
publishing {
publications {
maven(MavenPublication) {
artifactId = "ion-element"
from components.java
artifact sourcesJar
artifact javadocJar
pom {
name = "Ion Element Kotlin"
packaging = "jar"
url = "https://github.com/amzn/ion-element-kotlin"
description = "An immutable in-memory representation of Amazon Ion for Kotlin"
scm {
connection = "scm:git@github.com:amzn/ion-element-kotlin.git"
developerConnection = "scm:git@github.com:amzn/ion-element-kotlin.git"
url = "git@github.com:amzn/ion-element-kotlin.git"
}
licenses {
license {
name = "The Apache License, Version 2.0"
url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
}
}
developers {
developer {
name = "Amazon Ion Team"
email = "ion-team@amazon.com"
organization = "Amazon Ion"
organizationUrl = "https://github.com/amazon-ion"
}
}
}
}
}
repositories {
maven {
url "https://aws.oss.sonatype.org/service/local/staging/deploy/maven2"
credentials {
username ossrhUsername
password ossrhPassword
}
}
}
}
signing {
// Allow publishing to maven local even if we don't have the signing keys
// This works because when not required, the signing task will be skipped
// if signing.keyId, signing.password, signing.secretKeyRingFile, etc are
// not present in gradle.properties.
required { isReleaseVersion && gradle.taskGraph.hasTask("publish") }
sign publishing.publications.maven
}
tasks.withType(Sign) {
onlyIf { isReleaseVersion }
}