[go: nahoru, domu]

blob: c6478163104aca0b47ed3dbf11ea562738ead51f [file] [log] [blame]
/*
* Copyright 2018 The Android Open Source Project
*
* 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.
*/
package androidx.build
import groovy.lang.Closure
import org.gradle.api.Project
import java.util.ArrayList
/**
* Extension for [AndroidXPlugin].
*/
open class AndroidXExtension(val project: Project) {
var name: String? = null
var mavenVersion: Version? = null
set(value) {
field = if (isSnapshotBuild()) value?.copy(extra = "-SNAPSHOT") else value
project.version = field?.toString() as Any
}
var mavenGroup: LibraryGroup? = null
var description: String? = null
var inceptionYear: String? = null
var url = SUPPORT_URL
private var licenses: MutableCollection<License> = ArrayList()
var publish: Publish = Publish.NONE
var failOnDeprecationWarnings = true
var compilationTarget: CompilationTarget = CompilationTarget.DEVICE
var trackRestrictedAPIs = true
/**
* It disables docs generation and api tracking for tooling modules like annotation processors.
* We don't expect such modules to be used by developers as libraries, so we don't guarantee
* any api stability and don't expose any docs about them.
*/
var toolingProject = false
fun license(closure: Closure<*>): License {
val license = project.configure(License(), closure) as License
licenses.add(license)
return license
}
fun getLicenses(): Collection<License> {
return licenses
}
companion object {
@JvmField
val ARCHITECTURE_URL =
"https://developer.android.com/topic/libraries/architecture/index.html"
@JvmField
val SUPPORT_URL = "https://developer.android.com/jetpack/androidx"
val DEFAULT_UNSPECIFIED_VERSION = "unspecified"
}
}
enum class CompilationTarget {
/** This library is meant to run on the host machine (like an annotation processor). */
HOST,
/** This library is meant to run on an Android device. */
DEVICE
}
enum class Publish {
NONE, SNAPSHOT_ONLY, SNAPSHOT_AND_RELEASE;
fun shouldRelease() = this == SNAPSHOT_AND_RELEASE
fun shouldPublish() = this == SNAPSHOT_ONLY || this == SNAPSHOT_AND_RELEASE
}
class License {
var name: String? = null
var url: String? = null
}