torchicalpacalearns.hashnode.dev·Oct 26, 2024unpacking build.gradle and gradlew: a guide to building projects ⚒️🚧have you ever opened up a new project and wondered what is the mysterious build.gradle file and gradle folder? what do they actually do, and why are they important in projects? heres’s a quick guide! “back in my day” before gradle, setting up a Java...Discussbuild toolsgradlew
Vyacheslav Rusakovblog.vyarus.ru·Oct 17, 2024Releasing GraalVM-generated native binaries with Github Actions (and Gradle)Recently, I have to update binary release github action for my yaml-updater project and finally added debug and re-run abilities. So I decided to describe it here as it could be easilly reused for other projects (should be a good bootstrap for anyone...Discussgradle
Peter Onumkotlinpete.hashnode.dev·Oct 17, 2024Running Spring Boot Applications With Gradle and MavenYou can either run a Spring Boot application or build a jar from it. You can do both with either Gradle or Maven Gradle The command for running a Spring Boot app with Gradle is: ./gradlew bootRun The command for building a jar from a Spring Boot app...DiscussSpringboot
shamnad sheriefshamnadsherief.hashnode.dev·Oct 10, 2024Difference between "min SDK version", "target SDK version" and "compile SDK" version?TLDR; Min SDK Version: The min sdk version is the earliest release of the Android SDK that your application can run on. If you set your minsSdkVersion to 21 then the app can be installed on Android 5.0 (Lollipop) and above. Users with older devices, ...DiscussAndroid
Gabriel Rogathnyumbani-coder.hashnode.dev·Oct 4, 2024Android DevelopmentBUG! exception in phase 'semantic analysis' in source unit '_BuildScript_' Unsupported class file major version 65 Step 1: remove gradle configurations Step 2: create folder Gradle on e.g C:\Gradle Step 3: Install/Download Gradle version compatible t...DiscussAndroid
Sean Coughlinblog.seancoughlin.me·Sep 30, 2024Gradle: Java Build Tools, Tasks, Dependencies, and Multi-Project BuildsIntroduction In Java development, build tools are a crucial part of the workflow. They automate tasks such as compiling code, managing dependencies, packaging applications, and even running tests. As projects grow in size and complexity, manually han...Discuss·10 likes·43 readsSoftware EngineeringJava
Yogesh Borudeyogeshb.hashnode.dev·Sep 16, 2024Integrating Jenkins with Build Tools: A Comprehensive GuideIn the modern software development landscape, Continuous Integration (CI) and Continuous Deployment (CD) practices have become essential. Jenkins, an open-source automation server, stands out as one of the most popular tools for these purposes. One o...DiscussJenkins
Ankita Lunawatcloudhub2295.hashnode.dev·Sep 10, 2024Gradle installation on ubuntuGradle is build automation evolved, capable of automating the building, testing, publishing, deployment, and more for software packages or other types of projects such as generated static websites, generated documentation, or virtually anything else....Discussgradle
Bikash Nishankbikash-nishank.hashnode.dev·Sep 8, 2024Build Automation in Java: Maven, Gradle, and Ant1. Introduction What is Build Automation? Build automation refers to the process of automating the various tasks involved in compiling, packaging, testing, and deploying software. In the context of Java development, it simplifies the workflow by allo...Discussmaven
Himanshu Pareekblog.javarush.dev·Sep 8, 2024Creating Docker Image of Spring Boot Application using BuildpacksIntroduction You have created a Spring Boot application. It is working great on your local machine and now, you need to deploy the application somewhere else. On some platforms, you can directly submit the jar file and it will be deployed. At some pl...Discuss·33 readsJava and Spring FrameworkDocker