Skip to content

Commit d849eff

Browse files
authored
Merge pull request #12 from manriif/dev
build(deps): upgrade project dependencies
2 parents c263c8b + d5c73ec commit d849eff

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

gradle-plugin/src/main/kotlin/io/github/manriif/supabase/functions/kmp/JsDependency.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ private fun Project.configureJsDependency(collector: MutableMap<String, JsDepend
104104
private fun Project.findProjectDependencies(collector: MutableMap<String, JsDependency>) {
105105
configureJsDependency(collector)
106106

107+
// TODO find an alternative for accessing project dependencies to stay compatible with Gradle 9.0
107108
configurations.forEach { configuration ->
108109
configuration.allDependencies.withType<ProjectDependency> {
109110
dependencyProject.findProjectDependencies(collector)

gradle-plugin/src/main/kotlin/io/github/manriif/supabase/functions/task/SupabaseFunctionServeTask.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ import org.gradle.api.tasks.Optional
4242
import org.gradle.api.tasks.PathSensitive
4343
import org.gradle.api.tasks.PathSensitivity
4444
import org.gradle.api.tasks.TaskAction
45-
import org.gradle.configurationcache.extensions.get
4645
import org.gradle.deployment.internal.DeploymentRegistry
4746
import org.gradle.initialization.BuildCancellationToken
47+
import org.gradle.kotlin.dsl.support.get
4848
import org.gradle.process.internal.ExecHandleFactory
4949
import javax.inject.Inject
5050

gradle/libs.versions.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
[versions]
22

33
# Projct version
4-
supabase-functions = "0.0.5"
4+
supabase-functions = "0.0.6"
55

66
jvm-target = "11"
77

8-
detekt = "1.23.6"
8+
detekt = "1.23.7"
99
dokka = "1.9.20"
10-
gradle-idea-ext = "1.1.8"
10+
gradle-idea-ext = "1.1.9"
1111
gradle-plugin-publish = "1.2.1"
12-
kotlin = "2.0.0"
13-
kotlinpoet = "1.17.0"
14-
kotlinx-coroutines = "1.8.1"
15-
kotlinx-serialization = "1.7.0"
12+
kotlin = "2.0.21"
13+
kotlinpoet = "2.0.0"
14+
kotlinx-coroutines = "1.9.0"
15+
kotlinx-serialization = "1.7.3"
1616
sourcemap = "2.0.0"
17-
vanniktech-maven-publish = "0.29.0"
17+
vanniktech-maven-publish = "0.30.0"
1818

1919
[plugins]
2020

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Thu Sep 07 10:53:48 CEST 2023
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11-rc-1-bin.zip
54
zipStoreBase=GRADLE_USER_HOME
6-
zipStorePath=wrapper/dists
5+
zipStorePath=wrapper/dists

settings.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ dependencyResolutionManagement {
2323
repositories {
2424
mavenCentral()
2525
gradlePluginPortal()
26+
maven("https://packages.atlassian.com/mvn/maven-atlassian-external/")
2627
}
2728
}
2829

0 commit comments

Comments
 (0)