© 2023 Hashnode
#maven
Learn to perform web scraping with Jsoup in Java to automatically extract all data from an entire website. In this guide, we will cover the following: What is Jsoup? Prerequisites How To Build a We…
1. Related Post Publish a local markdown file to sites at once by Java, Usage Publish a local markdown file to sites at once by Java, Problem-Solving & Enhancement 2. Introduction After introducin…
1. Introduction When I tried to paste the local markdown file to the blog sites, like DEV Community and Medium, the formatting may be lost and the code block may not be properly indented nor properly …
Why multi-module projects? In multimodule projects, you split a big project into smaller modules. For instance, a website can be split to front-end, back-end and db modules. By splitting, it increases the readability and makes the project…
Overview By default, maven packages are using .JAR extension. JAR stand for Java Archive, it is built based on the ZIP format and is used to aggregate many file Java class files and corresponding meta…
Here we are going to create a Clojure library, pack it to a JAR file, deploy it to a Maven repository and make its code available from Clojure and ClojureScript projects. We will create the simplest p…
This article gives you a step by step walk-through for installing Apache Maven on Linux. Introduction Apache Maven is the most popular build and project management tool for Java projects. Maven is bui…
Motivation Having seen many tutorials on how to build REST APIs in Java using various combinations of frameworks and libraries, I decided to build my own API using the software suite that I have the m…
There are a lot of developers working in a daily basis pushing code and deploying it to different environments. Sometimes they don't even notice the details, but how this code gets deployed? how a pipeline looks like to deploy into differen…
This is a very common problem where we come across conflicting dependencies in our maven projects. A dependency can be present as a transitive dependency across several dependencies, and can potential…