StackShareStackShare
Follow on
StackShare

Discover and share technology stacks from companies around the world.

Product

  • Stacks
  • Tools
  • Companies
  • Feed

Company

  • About
  • Blog
  • Contact

Legal

  • Privacy Policy
  • Terms of Service

© 2025 StackShare. All rights reserved.

API StatusChangelog
Apache Maven
ByApache MavenApache Maven

Apache Maven

#20in Build Automation
Stacks2.88kDiscussions69
Followers1.71k
OverviewDiscussions69

What is Apache Maven?

Maven allows a project to build using its project object model (POM) and a set of plugins that are shared by all projects using Maven, providing a uniform build system. Once you familiarize yourself with how one Maven project builds you automatically know how all Maven projects build saving you immense amounts of time when trying to navigate many projects.

Apache Maven is a tool in the Build Automation category of a tech stack.

Key Features

Simple project setup that follows best practices - get a new project or module started in secondsConsistent usage across all projects means no ramp up time for new developers coming onto a projectSuperior dependency management including automatic updating, dependency closures (also known as transitive dependencies)Able to easily work with multiple projects at the same timeA large and growing repository of libraries and metadata to use out of the box, and arrangements in place with the largest Open Source projects for real-time availability of their latest releasesExtensible, with the ability to easily write plugins in Java or scripting languagesInstant access to new features with little or no extra configurationAnt tasks for dependency management and deployment outside of Maven

Apache Maven Pros & Cons

Pros of Apache Maven

  • ✓Dependency management
  • ✓Necessary evil
  • ✓I’d rather code my app, not my build
  • ✓Publishing packaged artifacts
  • ✓Convention over configuration
  • ✓Modularisation
  • ✓Consistency across builds
  • ✓Prevents overengineering using scripting
  • ✓Lot of cool plugins
  • ✓Runs Tests

Cons of Apache Maven

  • ✗Complex
  • ✗Inconsistent buillds
  • ✗Not many plugin-alternatives

Apache Maven Alternatives & Comparisons

What are some alternatives to Apache Maven?

Gradle

Gradle

Gradle is a build tool with a focus on build automation and support for multi-language development. If you are building, testing, publishing, and deploying software on any platform, Gradle offers a flexible model that can support the entire development lifecycle from compiling and packaging code to publishing web sites.

CMake

CMake

It is used to control the software compilation process using simple platform and compiler independent configuration files, and generate native makefiles and workspaces that can be used in the compiler environment of the user's choice.

Sonatype Nexus

Sonatype Nexus

It is an open source repository that supports many artifact formats, including Docker, Java™ and npm. With the Nexus tool integration, pipelines in your toolchain can publish and retrieve versioned apps and their dependencies

JFrog Artifactory

JFrog Artifactory

It integrates with your existing ecosystem supporting end-to-end binary management that overcomes the complexity of working with different software package management systems, and provides consistency to your CI/CD workflow.

Bazel

Bazel

Bazel is a build tool that builds code quickly and reliably. It is used to build the majority of Google's software, and thus it has been designed to handle build problems present in Google's development environment.

Apache Ant

Apache Ant

Ant is a Java-based build tool. In theory, it is kind of like Make, without Make's wrinkles and with the full portability of pure Java code.

Apache Maven Integrations

JitPack, MireDot, Jib, Log4j, TestNG and 7 more are some of the popular tools that integrate with Apache Maven. Here's a list of all 12 tools that integrate with Apache Maven.

JitPack
JitPack
MireDot
MireDot
Jib
Jib
Log4j
Log4j
TestNG
TestNG
Sonatype Nexus
Sonatype Nexus
SonarQube
SonarQube
Buddy
Buddy
Asciidoctor
Asciidoctor
Jtwig
Jtwig
Geb
Geb
Boxfuse
Boxfuse

Apache Maven Discussions

Discover why developers choose Apache Maven. Read real-world technical decisions and stack choices from the StackShare community.Showing 2 of 5 discussions.

Gonçalo Faustino
Gonçalo Faustino

Staff SRE

Dec 22, 2018

Needs adviceonDockerDockerRed Hat OpenShiftRed Hat OpenShiftSonarQubeSonarQube

We use Docker for our #DeploymentWorkflow along with Red Hat OpenShift SonarQube Sonatype Nexus GitLab Vault Apache Maven AngularJS Spring Boot

0 views0
Comments
Tymoteusz Paul
Tymoteusz Paul

Devops guy

Dec 9, 2018

Needs adviceonVagrantVagrantVirtualBoxVirtualBoxAnsibleAnsible

Often enough I have to explain my way of going about setting up a CI/CD pipeline with multiple deployment platforms. Since I am a bit tired of yapping the same every single time, I've decided to write it up and share with the world this way, and send people to read it instead ;). I will explain it on "live-example" of how the Rome got built, basing that current methodology exists only of readme.md and wishes of good luck (as it usually is ;)).

It always starts with an app, whatever it may be and reading the readmes available while Vagrant and VirtualBox is installing and updating. Following that is the first hurdle to go over - convert all the instruction/scripts into Ansible playbook(s), and only stopping when doing a clear vagrant up or vagrant reload we will have a fully working environment. As our Vagrant environment is now functional, it's time to break it! This is the moment to look for how things can be done better (too rigid/too lose versioning? Sloppy environment setup?) and replace them with the right way to do stuff, one that won't bite us in the backside. This is the point, and the best opportunity, to upcycle the existing way of doing dev environment to produce a proper, production-grade product.

I should probably digress here for a moment and explain why. I firmly believe that the way you deploy production is the same way you should deploy develop, shy of few debugging-friendly setting. This way you avoid the discrepancy between how production work vs how development works, which almost always causes major pains in the back of the neck, and with use of proper tools should mean no more work for the developers. That's why we start with Vagrant as developer boxes should be as easy as vagrant up, but the meat of our product lies in Ansible which will do meat of the work and can be applied to almost anything: AWS, bare metal, docker, LXC, in open net, behind vpn - you name it.

We must also give proper consideration to monitoring and logging hoovering at this point. My generic answer here is to grab Elasticsearch, Kibana, and Logstash. While for different use cases there may be better solutions, this one is well battle-tested, performs reasonably and is very easy to scale both vertically (within some limits) and horizontally. Logstash rules are easy to write and are well supported in maintenance through Ansible, which as I've mentioned earlier, are at the very core of things, and creating triggers/reports and alerts based on Elastic and Kibana is generally a breeze, including some quite complex aggregations.

If we are happy with the state of the Ansible it's time to move on and put all those roles and playbooks to work. Namely, we need something to manage our CI/CD pipelines. For me, the choice is obvious: TeamCity. It's modern, robust and unlike most of the light-weight alternatives, it's transparent. What I mean by that is that it doesn't tell you how to do things, doesn't limit your ways to deploy, or test, or package for that matter. Instead, it provides a developer-friendly and rich playground for your pipelines. You can do most the same with Jenkins, but it has a quite dated look and feel to it, while also missing some key functionality that must be brought in via plugins (like quality REST API which comes built-in with TeamCity). It also comes with all the common-handy plugins like Slack or Apache Maven integration.

The exact flow between CI and CD varies too greatly from one application to another to describe, so I will outline a few rules that guide me in it:

  1. Make build steps as small as possible. This way when something breaks, we know exactly where, without needing to dig and root around.
  2. All security credentials besides development environment must be sources from individual @{Vault}|tool:2905| instances. Keys to those containers should exist only on the CI/CD box and accessible by a few people (the less the better). This is pretty self-explanatory, as anything besides dev may contain sensitive data and, at times, be public-facing. Because of that appropriate security must be present. @{TeamCity}|tool:1357| shines in this department with excellent secrets-management.
  3. Every part of the build chain shall consume and produce artifacts. If it creates nothing, it likely shouldn't be its own build. This way if any issue shows up with any environment or version, all developer has to do it is grab appropriate artifacts to reproduce the issue locally.
  4. Deployment builds should be directly tied to specific @{Git}|tool:1046| branches/tags. This enables much easier tracking of what caused an issue, including automated identifying and tagging the author (nothing like automated regression testing!).

Speaking of deployments, I generally try to keep it simple but also with a close eye on the wallet. Because of that, I am more than happy with AWS or another cloud provider, but also constantly peeking at the loads and do we get the value of what we are paying for. Often enough the pattern of use is not constantly erratic, but rather has a firm baseline which could be migrated away from the cloud and into bare metal boxes. That is another part where this approach strongly triumphs over the common Docker and CircleCI setup, where you are very much tied in to use cloud providers and getting out is expensive. Here to embrace bare-metal hosting all you need is a help of some container-based self-hosting software, my personal preference is with Proxmox and LXC. Following that all you must write are ansible scripts to manage hardware of Proxmox, similar way as you do for Amazon EC2 (ansible supports both greatly) and you are good to go. One does not exclude another, quite the opposite, as they can live in great synergy and cut your costs dramatically (the heavier your base load, the bigger the savings) while providing production-grade resiliency.

0 views0
Comments
View all 5 discussions

Try It

Visit Website

Adoption

On StackShare

Companies
653
INYZGS+647
Developers
1.93k
RATBNO+1923