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

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

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/