-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
provide Tuple4 - Tuple9 including functions map, append, glue
- Loading branch information
Showing
38 changed files
with
3,670 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import org.gradle.api.DomainObjectCollection | ||
import org.gradle.kotlin.dsl.withType | ||
|
||
// TODO check if already moved into own tegonal repo and fetch via gt | ||
// TODO 1.5.0 check if already moved into own tegonal repo and fetch via gt | ||
// copied from com.github.vlsi.gradle.dsl.configureEach, using this instead so that we don't have to import | ||
inline fun <reified S : Any> DomainObjectCollection<in S>.configureEach(noinline configuration: S.() -> Unit) = | ||
withType().configureEach(configuration) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
plugins { | ||
id("build-logic.kotlin-dsl-gradle-plugin") | ||
} | ||
|
||
allprojects { | ||
group = "ch.tutteli.kbox.code-generation" | ||
} | ||
|
||
dependencies { | ||
api(buildLibs.kbox) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
rootProject.name = "code-generation" | ||
|
||
pluginManagement { | ||
includeBuild("../build-logic-conventions") | ||
} | ||
|
||
dependencyResolutionManagement { | ||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) | ||
repositories { | ||
gradlePluginPortal() | ||
} | ||
versionCatalogs { | ||
create("libs") { | ||
from(files("../libs.versions.toml")) | ||
} | ||
} | ||
versionCatalogs { | ||
create("buildLibs") { | ||
from(files("../buildLibs.versions.toml")) | ||
} | ||
} | ||
} | ||
|
||
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS") |
Oops, something went wrong.