Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jjohannes/java-magazin-gradle-6
Project used in the Java Magazin article about Gradle 6
https://github.com/jjohannes/java-magazin-gradle-6
gradle-article
Last synced: 3 days ago
JSON representation
Project used in the Java Magazin article about Gradle 6
- Host: GitHub
- URL: https://github.com/jjohannes/java-magazin-gradle-6
- Owner: jjohannes
- Created: 2019-12-10T07:50:58.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-10T08:15:50.000Z (about 5 years ago)
- Last Synced: 2024-11-11T04:24:00.326Z (2 months ago)
- Topics: gradle-article
- Language: Kotlin
- Homepage:
- Size: 58.6 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# Gradle 6 Sample Project
Gradle build files:
- [data/build.gradle.kts](data/build.gradle.kts)
- [services/build.gradle.kts](services/build.gradle.kts)
- [app/build.gradle.kts](app/build.gradle.kts)
- [platform/build.gradle.kts](platform/build.gradle.kts)
- [build.gradle.kts](build.gradle.kts) (root build file)Some tasks to run (add `--scan` to produced a build scan):
- Run the app: `./gradlew app:run`
- Run all tests: `./gradlew check`
- Compile all code: `./gradlew assemble`
- Print compile classpath of app: `./gradlew app:dependencies --configuration compileClasspath`
- Print runtime classpath of app: `./gradlew app:dependencies --configuration runtimeClasspath`Build scan to explore the build: [scans.gradle.com/s/23ipxdulqsgn6](https://scans.gradle.com/s/23ipxdulqsgn6)