mirror of
https://github.com/d4rken-org/capod.git
synced 2026-09-14 18:26:11 -04:00
- Migrate ProjectConfig from static object to proper Gradle plugin - Add version type support (beta/rc) to version.properties - Clean up legacy fastlane changelogs - Update release script to support version types - Remove automatic fastlane changelog generation from release script - Add BuildConfig field injection for version info
25 lines
475 B
Kotlin
25 lines
475 B
Kotlin
plugins {
|
|
`kotlin-dsl`
|
|
`java-library`
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
create("projectConfigPlugin") {
|
|
id = "projectConfig"
|
|
implementationClass = "ProjectConfigPlugin"
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.android.tools.build:gradle:8.13.0")
|
|
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.10")
|
|
implementation("com.squareup:javapoet:1.13.0")
|
|
}
|