Skip to content

Commit

Permalink
build: work in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
khalilou88 committed Jan 17, 2024
1 parent 4fa75bc commit c0bec7a
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
[versions]
java = "<%= javaVersion %>"
kotlin = "<%= kotlinVersion %>"
agp = "<%= agpVersion %>"
compose = "<%= composeVersion %>"
ktlint = "<%= ktlintVersion %>"

[libraries]

[plugins]
[plugins]
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
android-application = { id = "com.android.application", version.ref = "agp" }
android-library = { id = "com.android.library", version.ref = "agp" }
jetbrains-compose = { id = "org.jetbrains.compose", version.ref = "compose" }
github-khalilou88-jnxplus = { id = "io.github.khalilou88.jnxplus", version.ref = "<%= jnxplusGradlePluginVersion %>" }

Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
[versions]
java = "<%= javaVersion %>"
kotlin = "<%= kotlinVersion %>"
boot = "<%= springBootVersion %>"

[libraries]

[plugins]
[plugins]
springframework-boot = { id = "org.springframework.boot", version.ref = "boot" }
spring-dependency-management = { id = "io.spring.dependency-management", version = "1.1.0" }
github-khalilou88-jnxplus = { id = "io.github.khalilou88.jnxplus", version = "0.2.0" }
jetbrains-kotlin-plugin-spring = { id = "org.jetbrains.kotlin.plugin.spring", version.ref = "kotlin" }
jetbrains-kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }

Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ android.minSdk=24

#Versions
javaVersion=<%= javaVersion %>
kotlin.version=1.8.20
agp.version=7.4.2
compose.version=1.4.1
kotlin.version=<%= kotlinVersion %>
agp.version=<%= agpVersion %>
compose.version=<%= composeVersion %>
jnxplusGradlePluginVersion=<%= jnxplusGradlePluginVersion %>


Expand Down

0 comments on commit c0bec7a

Please sign in to comment.