Skip to content

Commit

Permalink
iguana 6 and gradle dependency versions plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
kartikarora committed Oct 3, 2023
1 parent a818412 commit ae9caab
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 12 deletions.
11 changes: 11 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask

// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version Versions.gradlePlugin apply false
id("org.jetbrains.kotlin.android") version Versions.kotlin apply false
id("com.github.ben-manes.versions") version Versions.gradleVersionsPlugin
}

tasks.named<DependencyUpdatesTask>("dependencyUpdates").configure {
// optional parameters
checkForGradleUpdate = true
outputFormatter = "html"
outputDir = "build/dependencyUpdates"
reportfileName = "report"
}
1 change: 1 addition & 0 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ plugins {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/AndroidConfig.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ object AndroidConfig {
const val TargetSdk = "34"
const val VersionName = "0.2.2"
const val Namespace = "me.kartikarora.android14"
const val KotlinCompilerExtensionVersion = "1.5.0-dev-k1.9.0-6a60475e07f"
const val KotlinCompilerExtensionVersion = "1.5.4-dev-k1.9.20-Beta2-ac5f960bdaf"
const val BuildTools = "34.0.0"
}
3 changes: 3 additions & 0 deletions buildSrc/src/main/kotlin/Libraries.kt
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,7 @@ object Libraries {

// coil
const val coil = "io.coil-kt:coil-compose:${Versions.coil}"

// GVP
const val gradleVersionsPlugin = "com.github.ben-manes:gradle-versions-plugin:${Versions.gradleVersionsPlugin}"
}
21 changes: 11 additions & 10 deletions buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
object Versions {
const val coil = "2.3.0"
const val navigationCompose = "2.5.3"
const val activity = "1.8.0-alpha06"
const val coreKtx = "1.12.0-alpha05"
const val appcompat = "1.7.0-alpha02"
const val composeBOM = "2023.06.01"
const val composeUiTooling = "1.6.0-alpha01"
const val coil = "2.4.0"
const val navigationCompose = "2.7.3"
const val activity = "1.8.0-rc01"
const val coreKtx = "1.12.0"
const val appcompat = "1.7.0-alpha03"
const val composeBOM = "2023.09.02"
const val composeUiTooling = "1.6.0-alpha06"
const val junit = "4.13.2"
const val lifecycle = "2.6.1"
const val lifecycle = "2.7.0-alpha02"
const val gradleVersionsPlugin = "0.48.0"

const val gradlePlugin = "8.3.0-alpha05"
const val kotlin = "1.9.0"
const val gradlePlugin = "8.3.0-alpha06"
const val kotlin = "1.9.20-Beta2"
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Sep 22 11:39:18 AEST 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-rc-2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-rc-3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit ae9caab

Please sign in to comment.