com.avito.android.critical_path.CriticalPathExtension.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of critical-path Show documentation
Show all versions of critical-path Show documentation
Collection of infrastructure libraries and gradle plugins of Avito Android project
package com.avito.android.critical_path
import org.gradle.api.file.DirectoryProperty
import org.gradle.api.provider.Property
public abstract class CriticalPathExtension {
public abstract val enabled: Property
/**
* Output directory for reports.
* build/reports/critical-path by default.
*/
public abstract val output: DirectoryProperty
}