“What is wrong with my IntelliJ IDEA ?”ffs IDEA, Y U NO compile?!– MeEvery IDEA developer knows what it is.IntelliJ IDEA is a really great IDE to work with. All those features, all those shortcuts. The refactoring options are truly useful. The…
Thanks for detailing out the whole process. It took me a couple of days to publish my library on maven as I could not find anything like this at that time.Cheers
Why S3 is not the perfect Maven repositoryAt ecosio we were looking for a new way to store our private Maven artifacts. And we…
Maven’s Bill of Materials (BOM)If you are a regular user of Maven you might have come across a very common issue — version control.Let me set some example which would probably hits closer to home (or work ☺):I’m using Spring as my app core framework …
Release versioningVersioningThe convention for version numbers is major.minor.build.major is incremented when the public interface changes incompatibly. For example, a method is removed, or its signature changes. Clients using your library need to take care when…
Thanks! It is really hard, even now that you’ve explained it in the tiniest detail, thank God I didn’t try before reading this article.
Migrate from Maven to GradleAs far as I experienced, Gradle provides a better and easier build system along with dependencies management. The configuration file is very short and readable compared to the unnecessary Maven XML configuration tags.
Creating an Eclipse project using MavenMaven is a build automation tool used in Java projects and excellent in handling dependencies between Java projects. Eclipse is a popular IDE used in developing Java projects. Therefore it makes Java development very productive if we can combine these two…