-
Notifications
You must be signed in to change notification settings - Fork 6
/
build.gradle.kts
172 lines (157 loc) · 5.36 KB
/
build.gradle.kts
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
import android.annotation.SuppressLint
import java.util.*
/*
* Copyright (c) 2023 Udhayarajan M
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License 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.
*
*/
plugins {
kotlin("multiplatform") version "1.7.22"
id("convention.publication")
id("com.android.library")
id("org.jetbrains.dokka") version "1.7.20"
id("io.github.gradle-nexus.publish-plugin") version "1.2.0"
id("org.jlleitschuh.gradle.ktlint") version "10.1.0"
}
group = "io.github.udhayarajan"
version = "5.7.2"
// Version Naming incremented if "<NEW_FEATURE_ADDED>.<WORKED_ON_BUG>.<BETA_VERSION_COUNT_OR_PRE_RELEASE>"
// Priority on incrementing Feature > BugFix > Beta
repositories {
google()
mavenCentral()
}
subprojects {
apply(plugin = "org.jetbrains.dokka")
}
kotlin {
jvm {
compilations.all {
kotlinOptions.jvmTarget = "11"
}
testRuns["test"].executionTask.configure {
useJUnitPlatform()
}
}
android {
publishLibraryVariants("release", "debug")
}
sourceSets {
val ktor_version = "2.3.1"
@SuppressLint("DuplicatePlatformClasses")
val jvmMain by getting {
dependencies {
// https://mvnrepository.com/artifact/org.json/json
implementation("org.json:json:20220924")
// https://mvnrepository.com/artifact/org.ccil.cowan.tagsoup/tagsoup
implementation("org.ccil.cowan.tagsoup:tagsoup:1.2.1")
}
}
val jvmTest by getting
val androidMain by getting {
dependencies {
// implementation("com.google.android.material:material:1.7.0")
}
}
val androidTest by getting {
dependencies {
implementation("junit:junit:4.13.2")
}
}
val commonMain by getting {
dependencies {
implementation("io.ktor:ktor-client-core:$ktor_version")
implementation("io.ktor:ktor-client-android:$ktor_version")
implementation("io.ktor:ktor-client-serialization:$ktor_version")
}
}
val commonTest by getting {
dependencies {
implementation(kotlin("test"))
}
}
}
}
ktlint {
disabledRules.set(listOf("no-wildcard-imports"))
}
android {
compileSdk = 33
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
sourceSets["main"].java.srcDir("src/androidMain/kotlin/")
defaultConfig {
minSdk = 21
targetSdk = 33
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
lint {
isAbortOnError = false
}
}
dependencies {
implementation("androidx.core:core-ktx:1.10.1")
testImplementation(project(mapOf("path" to ":")))
testImplementation(project(mapOf("path" to ":")))
testImplementation(project(mapOf("path" to ":")))
androidTestImplementation(project(mapOf("path" to ":")))
androidTestImplementation(project(mapOf("path" to ":")))
}
tasks.dokkaHtml.configure {
outputDirectory.set(file("$projectDir/docs"))
}
nexusPublishing {
// Stub secrets to let the project sync and build without the publication values set up
val ext = rootProject.ext
ext["signing.keyId"] = null
ext["signing.password"] = null
ext["sonatypeStagingProfileId"] = null
ext["signing.key"] = null
ext["ossrhUsername"] = null
ext["ossrhPassword"] = null
ext["sonatypeStagingProfileId"] = null
// Grabbing secrets from local.properties file or from environment variables, which could be used on CI
val secretPropsFile = project.rootProject.file("local.properties")
if (secretPropsFile.exists()) {
secretPropsFile.reader().use {
Properties().apply {
load(it)
}
}.onEach { (name, value) ->
ext[name.toString()] = value
println(ext)
}
} else {
ext["signing.keyId"] = System.getenv("SIGNING_KEY_ID")
ext["signing.password"] = System.getenv("SIGNING_PASSWORD")
ext["signing.key"] = System.getenv("SIGNING_KEY")
ext["ossrhUsername"] = System.getenv("OSSRH_USERNAME")
ext["ossrhPassword"] = System.getenv("OSSRH_PASSWORD")
ext["sonatypeStagingProfileId"] = System.getenv("SONATYPE_STAGING_PROFILE_ID")
}
repositories {
sonatype {
stagingProfileId.set(ext["sonatypeStagingProfileId"].toString())
username.set(ext["ossrhUsername"].toString())
password.set(ext["ossrhPassword"].toString())
nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/"))
snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/"))
}
}
}
task("printVersionName") {
println(version)
}