Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
Hummel009 committed Jan 29, 2024
1 parent 4bd1988 commit f5cda19
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ permissions:
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
version: [ 'Java', 'KotlinJvm', 'KotlinNative' ]
steps:
- uses: actions/checkout@main
- name: Set up JDK 21
Expand All @@ -21,4 +24,4 @@ jobs:
- name: Build with Gradle
uses: gradle/gradle-build-action@main
with:
arguments: build
arguments: :app${{matrix.version}}:build
8 changes: 6 additions & 2 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pluginManagement {
repositories {
google()
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
Expand All @@ -9,12 +9,16 @@ pluginManagement {
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_PROJECT)
repositories {
google()
mavenLocal()
mavenCentral()
gradlePluginPortal()
}
}

plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}

include(":appKotlinJvm")
include(":appKotlinNative")
include(":appJava")

0 comments on commit f5cda19

Please sign in to comment.