• Home
  • Raw
  • Download

Lines Matching +full:- +full:- +full:base +full:- +full:artifacts +full:- +full:url

8  *      https://www.apache.org/licenses/LICENSE-2.0
63 // If we have a base ref to diff against, extract the branch name and use it
82 … maven { url "https://androidx.dev/snapshots/builds/$composeSnapshot/artifacts/repository/" }
107 tasks.whenTaskAdded { task ->
114 resolutionStrategy.eachDependency { DependencyResolveDetails details ->
124 tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach { compile ->
131 freeCompilerArgs += "-opt-in=kotlin.RequiresOptIn"
133 freeCompilerArgs += "-Xjvm-default=all"
141 signingPropsFile.withInputStream { is -> localProperties.load(is) }
142 localProperties.each { prop ->
175 url.set(new URL("https://developer.android.com/reference/"))
176 … packageListUrl.set(new URL("https://developer.android.com/reference/androidx/package-list"))
179 url.set(new URL("https://developer.android.com/reference/kotlin/"))
180 …packageListUrl.set(new URL("https://developer.android.com/reference/kotlin/androidx/package-list"))
185 // URL showing where the source code can be accessed through the web browser
186 …remoteUrl.set(new URL("https://github.com/google/accompanist/blob/main/${project.name}/src/main/ja…
187 // Suffix which is used to append the line number to the URL. Use #L for GitHub
201 version = versionName.replace('-SNAPSHOT', ".compose-${composeSnapshot}-SNAPSHOT")
208 configurations.configureEach { configuration ->
209 configuration.dependencies.configureEach { dependency ->
218 … "Using SNAPSHOT dependency with non-SNAPSHOT library version: $dependency"