Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looking for real world Gradle examples [closed]

Tags:

gradle

build

I am currently trying out Gradle on some projects and I am looking for some real world examples of its usage. For example you can see Spring's Gradle configuration here. Can anyone suggest some other examples please?

like image 676
Leesrus Avatar asked Mar 10 '12 11:03

Leesrus


2 Answers

Most of the projects in my GitHub repository are built with Gradle. You should find plenty of examples there. Three bigger example code bases that use Gradle are Griffon, Gaelyk and of course Gradle itself. Also a search for build.gradle on GitHub will find you a lot of other repositories.

like image 166
Benjamin Muschko Avatar answered Nov 20 '22 09:11

Benjamin Muschko


I think the Spring's configuration is the best example: simple, clear and large. If you would like to see some exotic usages, including configuration-time task generation, you should take a look at Hibernate and of course Gradle itself

like image 45
Nikita Skvortsov Avatar answered Nov 20 '22 09:11

Nikita Skvortsov