Skip to content

Commit

Permalink
fun
Browse files Browse the repository at this point in the history
  • Loading branch information
mareklangiewicz committed Jun 6, 2024
1 parent b4cee6f commit 965270c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
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 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ pluginManagement {
}

plugins {
id("pl.mareklangiewicz.deps.settings") version "0.3.13" // https://plugins.gradle.org/search?term=mareklangiewicz
id("com.gradle.develocity") version "3.17.4" // https://docs.gradle.com/enterprise/gradle-plugin/
id("pl.mareklangiewicz.deps.settings") version "0.3.16" // https://plugins.gradle.org/search?term=mareklangiewicz
id("com.gradle.develocity") version "3.17.4" // https://docs.gradle.com/develocity/gradle-plugin/
}

develocity {
Expand Down
2 changes: 1 addition & 1 deletion smokk/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ fun Project.setMyWeirdSubstitutions(
.using(
// Note: there are different fun in gradle: Project.project; DependencySubstitution.project
if (foundLocalProjects[projName] != null) project(":$projName")
else module("$myProjectsGroup:$projName:$projVer"),
else module("$myProjectsGroup:$projName:$projVer")
)
}
}
Expand Down
2 changes: 1 addition & 1 deletion smokksample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ fun Project.setMyWeirdSubstitutions(
.using(
// Note: there are different fun in gradle: Project.project; DependencySubstitution.project
if (foundLocalProjects[projName] != null) project(":$projName")
else module("$myProjectsGroup:$projName:$projVer"),
else module("$myProjectsGroup:$projName:$projVer")
)
}
}
Expand Down
2 changes: 1 addition & 1 deletion smokkx/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ fun Project.setMyWeirdSubstitutions(
.using(
// Note: there are different fun in gradle: Project.project; DependencySubstitution.project
if (foundLocalProjects[projName] != null) project(":$projName")
else module("$myProjectsGroup:$projName:$projVer"),
else module("$myProjectsGroup:$projName:$projVer")
)
}
}
Expand Down

0 comments on commit 965270c

Please sign in to comment.