Skip to content

Commit

Permalink
fun
Browse files Browse the repository at this point in the history
  • Loading branch information
mareklangiewicz committed Jan 8, 2025
1 parent d2b80c4 commit 1e2f290
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import org.jetbrains.kotlin.gradle.dsl.*

plugins {
plugAll(plugs.KotlinJvm, plugs.NexusPublish, plugs.GradlePublish, plugs.Signing)
id("pl.mareklangiewicz.sourcefun") version "0.4.22"
id("pl.mareklangiewicz.sourcefun") version "0.4.23"
// FIXME_later: add to plugAll after updating deps
// https://plugins.gradle.org/search?term=pl.mareklangiewicz
}
Expand Down Expand Up @@ -48,7 +48,7 @@ defaultGroupAndVerAndDescription(
group = "pl.mareklangiewicz.deps", // important non default ...deps group (as accepted on gradle portal)
description = "Updated dependencies for typical java/kotlin/android projects (with IDE support).",
githubUrl = "https://github.com/mareklangiewicz/DepsKt",
version = Ver(0, 3, 65),
version = Ver(0, 3, 66),
// TODO use some SourceFun task to make sure it's synced with Vers.DepsPlug
// (we println it when applying plugin so have to be synced not to confuse users)
// https://plugins.gradle.org/search?term=pl.mareklangiewicz
Expand Down
6 changes: 3 additions & 3 deletions src/main/kotlin/deps/Vers.kt
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ object Vers {
* - [github john rengelman shadow](https://github.com/johnrengelman/shadow)
* - [docs](https://github.com/johnrengelman/shadow)
*/
val GradleShadowPlug = Ver("8.3.5")
val GradleShadowPlug = Ver("9.0.0-beta4")

/**
* Osacky Doctor Gradle Plugin
Expand All @@ -151,15 +151,15 @@ object Vers {
* - [plugins gradle deps settings](https://plugins.gradle.org/plugin/pl.mareklangiewicz.deps.settings)
* - [plugins gradle search mareklangiewicz](https://plugins.gradle.org/search?term=pl.mareklangiewicz)
*/
val DepsPlug = Ver(0, 3, 65) // TODO make sure it's always synced with myLibDetails(version)
val DepsPlug = Ver(0, 3, 66) // TODO make sure it's always synced with myLibDetails(version)

/**
* SourceFun Gradle Plugin
* - [github](https://github.com/mareklangiewicz/SourceFun)
* - [plugins gradle search mareklangiewicz](https://plugins.gradle.org/search?term=pl.mareklangiewicz)
* - [plugins gradle sourcefun](https://plugins.gradle.org/plugin/pl.mareklangiewicz.sourcefun)
*/
val SourceFunPlug = Ver("0.4.22")
val SourceFunPlug = Ver("0.4.23")

const val JvmDefaultVer = "23"

Expand Down

0 comments on commit 1e2f290

Please sign in to comment.