Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)