https://github.com/josdem/gradle-workshop
This project shows how to use some advantages in using Gradle as automation build tool
https://github.com/josdem/gradle-workshop
gradle groovy
Last synced: about 1 year ago
JSON representation
This project shows how to use some advantages in using Gradle as automation build tool
- Host: GitHub
- URL: https://github.com/josdem/gradle-workshop
- Owner: josdem
- Created: 2018-10-07T17:24:30.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-07T21:02:44.000Z (over 7 years ago)
- Last Synced: 2025-01-17T15:52:32.444Z (about 1 year ago)
- Topics: gradle, groovy
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Gradle Workshop
------------------------------------
[Gradle](https://gradle.org/) is an open-source build automation tool focused on flexibility and performance. Gradle build scripts are written using a Groovy or Kotlin DSL. Using DSL language you write your build script file as you write your development code.
#### To run tasks in main Gradle file
```bash
gradle task_name
```
#### To run environments Gradle file
```bash
gradle -b environments.gradle settingEnvironment
```
#### Read this as reference
http://josdem.io/techtalk/cicd/gradle/