moar social glazing

This commit is contained in:
Harsh Shandilya 2024-03-31 23:06:48 +05:30
parent 5c19f015bb
commit 235eeac884
3 changed files with 13 additions and 9 deletions

View File

@ -1,10 +1,14 @@
--- ---
title: Improving dependency sync speeds for your Gradle project title: Improving dependency sync speeds for your Gradle project
date: 2024-03-30T21:43:07.031Z date: 2024-03-30T21:43:07.031Z
summary: Waiting for Gradle to download dependencies before your IDE becomes summary: Waiting for Gradle to download dependencies is so 2023.
usable is a constant pain for developers. Here are some tips to speed up that
process.
socialImage: "uploads/gradle-social.webp" socialImage: "uploads/gradle-social.webp"
categories:
- gradle
tags:
- gradle
- kotlin-multiplatform
- perf
--- ---
Android developers are intimately familiar with the ritual of staring at your IDE for tens of minutes while Gradle imports a new project before they can start working on it. While not fully avoidable, there are many ways to improve the situation. For small to medium projects, the time spent on this import phase can be largely dominated by dependency downloads. Android developers are intimately familiar with the ritual of staring at your IDE for tens of minutes while Gradle imports a new project before they can start working on it. While not fully avoidable, there are many ways to improve the situation. For small to medium projects, the time spent on this import phase can be largely dominated by dependency downloads.

4
go.mod
View File

@ -3,6 +3,6 @@ module github.com/msfjarvis/msfjarvis.dev
go 1.19 go 1.19
require ( require (
github.com/adityatelange/hugo-PaperMod v0.0.0-20231210070605-e0fc64c43e8f // indirect github.com/adityatelange/hugo-PaperMod v0.0.0-20240316195851-dad94ab4b7c5 // indirect
github.com/msfjarvis/hugo-social-metadata v1.0.0 // indirect github.com/msfjarvis/hugo-social-metadata v1.0.1 // indirect
) )

8
go.sum
View File

@ -1,4 +1,4 @@
github.com/adityatelange/hugo-PaperMod v0.0.0-20231210070605-e0fc64c43e8f h1:f+YeYKNnRlma+NrgGtinVOd4ER4DHi4QcIOjoodEuIw= github.com/adityatelange/hugo-PaperMod v0.0.0-20240316195851-dad94ab4b7c5 h1:yczLu4cdgnLAiRHGQuxTP86WHfEvip4IAkcKT/2HocE=
github.com/adityatelange/hugo-PaperMod v0.0.0-20231210070605-e0fc64c43e8f/go.mod h1:HCHxNMKYdGafUYjVV3ICiAqznZK2yH0iI53jqcDFDdQ= github.com/adityatelange/hugo-PaperMod v0.0.0-20240316195851-dad94ab4b7c5/go.mod h1:HCHxNMKYdGafUYjVV3ICiAqznZK2yH0iI53jqcDFDdQ=
github.com/msfjarvis/hugo-social-metadata v1.0.0 h1:mfLnus8iznPGiyFkJC93eCWr1PrdiNyv2BSONX1ZQVg= github.com/msfjarvis/hugo-social-metadata v1.0.1 h1:cnFLbgfEfiDGC7iFUTZ+Y6ME0Lw9rAARMjn4emfb4wQ=
github.com/msfjarvis/hugo-social-metadata v1.0.0/go.mod h1:VfkrQTa9Gvdja58swLlBZz2/7ZEoj5nk9xt0pJAhfVo= github.com/msfjarvis/hugo-social-metadata v1.0.1/go.mod h1:VfkrQTa9Gvdja58swLlBZz2/7ZEoj5nk9xt0pJAhfVo=