Skip to content

Commit

Permalink
Gradle Convention Plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
kirich1409 committed May 29, 2024
1 parent 7c80847 commit f7eb49d
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions convention/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
9 changes: 9 additions & 0 deletions convention/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
plugins {
id("java-library")
alias(libs.plugins.jetbrainsKotlinJvm)
}

java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package dev.androidbroadcast.gradle.convention

class GradleConventions {
}
2 changes: 2 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,5 @@ include(":features:news-main:domain")
include(":news-common")
include(":news-uikit")
include(":baselineprofile")

include(":convention")

0 comments on commit f7eb49d

Please sign in to comment.