Gradle

Open-source projects categorized as Gradle

Top 23 Gradle Open-Source Projects

  • Gradle

    Adaptable, fast automation for all

  • Project mention: Setting up linters in Gitlab CI for C++ and Groovy / Jenkins code | dev.to | 2024-05-03

    Because executing CodeNarc from the command-line is not so simple, I find it easier to use Gradle and its dedicated plugin to execute CodeNarc:

  • jib

    🏗 Build container images for your Java applications.

  • Project mention: Nix is a better Docker image builder than Docker's image builder | news.ycombinator.com | 2024-03-15
  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • baritone

    google maps for block game

  • Project mention: Is it possible to use a local LLM and have it play Minecraft? | /r/LocalLLaMA | 2023-06-07

    Check out Baritone, most of the hard work has already been done: https://github.com/cabaletta/baritone

  • android-showcase

    💎 Android application following best practices: Kotlin, Coroutines, JetPack, Clean Architecture, Feature Modules, Tests, MVVM, DI, Static Analysis...

  • Project mention: Refactoring Multi-Module Kotlin Project With Konsist | dev.to | 2023-09-04

    Android-Showcase (Android project using Konsist)

  • Hibernate

    Hibernate's core Object/Relational Mapping functionality

  • Project mention: Como desenvolvi um backend web em Clojure | dev.to | 2023-07-03
  • Android Tips & Tricks

    :ballot_box_with_check: [Cheatsheet] Tips and tricks for Android Development

  • spotless

    Keep your code spotless

  • Project mention: We Have Code Quality At Home: Open Source Java Code Quality Tools | dev.to | 2024-05-06

    Spotless is an open-source, multi-language, customizable code formatter for projects. It comes with a Maven Plugin that can be customized as needed.

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  • gradle-play-publisher

    GPP is Android's unofficial release automation Gradle Plugin. It can do anything from building, uploading, and then promoting your App Bundle or APK to publishing app listings and other metadata.

  • dryrun

    :cloud: Try the demo project of any Android Library

  • dexcount-gradle-plugin

    A Gradle plugin to report the number of method references in your APK on every build.

  • WorldEdit

    🗺️ Minecraft map editor and mod

  • JitPack

    Documentation and issues of https://jitpack.io

  • AnyChart

    AnyChart Android Chart is an amazing data visualization library for easily creating interactive charts in Android apps. It runs on API 19+ (Android 4.4) and features dozens of built-in chart types.

  • dns66

    DNS-based Host Blocker (and lightweight ad blocker) for Android

  • Project mention: Haha nice try Google. I ain't that stupid | /r/pcmasterrace | 2023-06-28
  • MaterialSearchBar

    Material Design Search Bar for Android

  • AndroidIDE

    AndroidIDE is an IDE for Android to develop full featured Android apps.

  • Project mention: FLaNK AI Weekly for 29 April 2024 | dev.to | 2024-04-29
  • kotlin-android-template

    Android + Kotlin + Github Actions + ktlint + Detekt + Gradle Kotlin DSL + buildSrc = ❤️

  • Gradle buildSrcVersions

    Life is too short to google for dependencies and versions

  • Project mention: Dependency Managers Don't Manage Your Dependencies (2021) | news.ycombinator.com | 2023-06-19

    Lately I've been using gradle with kotlin-js and a mix of npm and jvm dependencies. There's the https://splitties.github.io/refreshVersions/ plugin that I can recommend if you are using gradle (with or without kotlin-js).

    It manages plugin dependencies, library dependencies, and version dependencies. It can use the new gradle version catalog or not if you prefer. On first use, you migrate your versions and it extracts these to a versions.properties (or your version catalog). Then whenever you run refreshVersions it indicates available new versions in comments in this file. It also indicates unused dependencies. Though for npms this is a bit harder. All you need to do is manually use the versions you want.

    I run this frequently to stay on top of upstream changes. Few software engineers realize that the testing and integration overhead with version changes multiplies (just like with other forms of change). Libraries that you haven't updated amount to technical debt that you haven't addressed. So, the workload increases massively if you don't update for a while. Staying up to date minimizes the workload. This plugin makes that super easy.

    Given that we are using kotlin-js, we have to deal with a rapidly evolving library ecosystem so we do have occasional issues that we need to work around by either downgrading or fixing some code. Whenever I can't update something, I document it in my versions.properties with a comment. Often you just have to wait for the next release or so for things to straighten out. The price of using cutting edge software.

    Kotlin-js manages a yarn lock file as well. So it properly locks dependencies. Whenever you update npm dependencies, you have to run a command to upgrade the lock file. There's also a whole mess of webpack dependencies that comes along with kotlin-js.

  • Fetch

    The best file downloader library for Android (by tonyofrancis)

  • PiracyChecker

    An Android library that prevents your app from being pirated / cracked using Google Play Licensing (LVL), APK signature protection and more. API 14+ required.

  • MinecraftDev

    Plugin for IntelliJ IDEA that gives special support for Minecraft modding projects.

  • ktlint-gradle

    A ktlint gradle plugin

  • Project mention: [Question] disable ktlint rules with ktlint-gradle version 12.0.2 | /r/KotlinAndroid | 2023-12-05

    buildscript { . . . dependencies { classpath 'com.android.tools.build:gradle:8.1.4' classpath "org.jlleitschuh.gradle:ktlint-gradle:12.0.2" // https://github.com/JLLeitschuh/ktlint-gradle/releases . . } } allprojects { . . . apply plugin: "org.jlleitschuh.gradle.ktlint" }

  • material-chip-view

    Material Chip view. Can be used as tags for categories, contacts or creating text clouds

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

Gradle related posts

  • Setting up linters in Gitlab CI for C++ and Groovy / Jenkins code

    1 project | dev.to | 3 May 2024
  • Gradle's leaky abstractions: Declarative(ish) shell, imperative core: Implementing a safe(ish) global configuration DSL

    2 projects | dev.to | 24 Mar 2024
  • Working with Environment Variables in Java

    3 projects | dev.to | 22 Mar 2024
  • Android Studio in Android phones is not a dream anymore for computerless devs

    1 project | /r/programming | 11 Dec 2023
  • Need help modifying a Minecraft mod

    1 project | /r/feedthebeast | 10 Dec 2023
  • [Question] disable ktlint rules with ktlint-gradle version 12.0.2

    1 project | /r/KotlinAndroid | 5 Dec 2023
  • Intro to Java Question

    3 projects | /r/javahelp | 4 Dec 2023
  • A note from our sponsor - InfluxDB
    www.influxdata.com | 12 May 2024
    Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality. Learn more →

Index

What are some of the best open-source Gradle projects? This list will help you:

Project Stars
1 Gradle 16,177
2 jib 13,409
3 baritone 6,674
4 android-showcase 6,360
5 Hibernate 5,757
6 Android Tips & Tricks 4,709
7 spotless 4,194
8 gradle-play-publisher 4,073
9 dryrun 3,825
10 dexcount-gradle-plugin 3,056
11 WorldEdit 3,003
12 JitPack 2,478
13 AnyChart 2,240
14 dns66 2,080
15 MaterialSearchBar 2,034
16 AndroidIDE 1,959
17 kotlin-android-template 1,698
18 Gradle buildSrcVersions 1,624
19 Fetch 1,603
20 PiracyChecker 1,545
21 MinecraftDev 1,417
22 ktlint-gradle 1,395
23 material-chip-view 1,355

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com