-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from gradle/solution-pages
Add stub Java and Kotlin pages
- Loading branch information
Showing
4 changed files
with
65 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
title: Declarative Gradle for Java and JVM | ||
description: > | ||
Supporting key Java use-cases is a priority for Declarative Gradle, | ||
along with support for Android and Kotlin projects. | ||
--- | ||
|
||
Supporting key Java use-cases is a priority for Declarative Gradle, | ||
along with support for Android and Kotlin projects. | ||
Right now, we have prototypes for both Java application and libraries. | ||
|
||
> **DISCLAIMER:** This page is under development, more content will be added soon. | ||
> For now, check out the prototypes referenced below. | ||
## Example | ||
|
||
```kotlin | ||
javaApplication { | ||
javaVersion = 21 | ||
mainClass = "com.example.App" | ||
|
||
dependencies { | ||
implementation(project(":java-util")) | ||
implementation("com.google.guava:guava:32.1.3-jre") | ||
} | ||
} | ||
``` | ||
|
||
## Prototypes | ||
|
||
- [Java Application](../../unified-prototype/testbed-java-application/) | ||
- [Java Library](../../unified-prototype/testbed-java-library/) | ||
- [Java Application for multiple JVMs](../../unified-prototype/testbed-jvm-application/) | ||
- [Java Library for multiple JVMs](../../unified-prototype/testbed-jvm-library/) | ||
|
||
## Related resources | ||
|
||
- [Declarative Gradle for Kotlin](../kotlin/README.md) | ||
- [Declarative Gradle for Android](../android/README.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
title: Declarative Gradle for Kotlin | ||
description: > | ||
Declarative Gradle has solution for Kotlin projects, libraries and | ||
also for Kotlin Multiplatform applications. | ||
--- | ||
|
||
Declarative Gradle has solution for Kotlin projects, libraries and | ||
also for Kotlin Multiplatform (KMP) applications. | ||
|
||
> **DISCLAIMER:** This page is under development, more content will be added soon. | ||
> For now, check out the prototypes referenced below. | ||
## Prototypes | ||
|
||
- [Kotlin Application](../../unified-prototype/testbed-kotlin-application/) | ||
- [Kotlin Library](../../unified-prototype/testbed-kotlin-library/) | ||
|
||
## References | ||
|
||
- [Declarative Gradle for Java](../java/README.md) | ||
- [Declarative Gradle for Android](../android/README.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters