Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gradle Declarative #1068

Open
JavierSegoviaCordoba opened this issue Nov 23, 2024 · 0 comments
Open

Gradle Declarative #1068

JavierSegoviaCordoba opened this issue Nov 23, 2024 · 0 comments
Assignees
Labels
enhancement New feature or request

Comments

@JavierSegoviaCordoba
Copy link
Owner

JavierSegoviaCordoba commented Nov 23, 2024

Concept

Kotlin JVM

hubdle {
    kotlin {
        jvm {
            config {
                docs { }
                format { }
                jvmVersion = JavaVersion.VERSION_11
                publishing { }
            }
            features {
                compose { }
                coroutines { }
            }
        }
    }
}

Kotlin Multiplatform

hubdle {
    kotlin {
        multiplatform {
            config {
                docs { }
                format { }
                publishing { }
            }
            features {
                compose { }
                coroutines { }
            }
            targets {
                common {
                    main { }
                    test { }
                }
                ios {
                    iosArm32 {
                        main { }
                        test { }
                    }
                    iosArm64 {
                        main { }
                        test { }
                    }
                }
                jvm {
                    config {
                      jvmVersion = JavaVersion.VERSION_11
                    }
                    main { }
                    test { }
                }
            }
        }
    }
}
@JavierSegoviaCordoba JavierSegoviaCordoba added the enhancement New feature or request label Nov 23, 2024
@JavierSegoviaCordoba JavierSegoviaCordoba self-assigned this Nov 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant