Top "Build-process" questions

The process of converting source code files into standalone software artifact(s) that can be run on a computer

How can I create an executable JAR with dependencies using Maven?

I want to package my project in a single executable JAR for distribution. How can I make a Maven project …

java maven-2 build-process build-automation executable-jar
How to build jars from IntelliJ properly?

I have a project that contains a single module, and some dependencies. I'd like to create a jar, in a …

java intellij-idea jar build-process
Why use Gradle instead of Ant or Maven?

What does another build tool targeted at Java really get me? If you use Gradle over another tool, why?

java maven ant build-process gradle
Maven: add a dependency to a jar by relative path

I have a proprietary jar that I want to add to my pom as a dependency. But I don't want …

java maven-2 build-process build dependencies
Best practices for copying files with Maven

I have config files and various documents that I want to copy from the dev environment to the dev-server directory …

maven maven-2 build-process release-management
How do I get the Git commit count?

I'd like to get the number of commits of my Git repository, a bit like SVN revision numbers. The goal …

git build-process revision
Maven Modules + Building a Single Specific Module

I have a multi-module Maven project with a parent project P and three sub-modules A, B, and C. Both B …

java maven-2 build-process
How to run Visual Studio post-build events for debug build only

How can I limit my post-build events to running only for one type of build? I'm using the events to …

visual-studio build-process
How do I put all required JAR files in a library folder inside the final JAR file with Maven?

I am using Maven in my standalone application, and I want to package all the dependencies in my JAR file …

java maven jar build-process classloader
How do I generate sourcemaps when using babel and webpack?

I'm new to webpack, and I need a hand in setting up to generate sourcemaps. I'm running webpack serve from …

javascript webpack build-process babeljs source-maps