- Apache Maven is a software project management and comprehension
tool . Based on the concept of a project object model (POM), Maven can manage a project's build, reporting and documentation from a central piece of information.
- Ant
Apache Ant is a Java library and command-line tool whose mission is to drive processes described in build files as targets and extension points dependent upon each other. The main known usage of Ant is the build of Java applications
http://ant.apache.org/
Gradle
http://www.gradle.org/
- gulp is a toolkit for automating painful or time-consuming tasks in your development workflow, so you can stop messing around and build something.
https://gulpjs.com/
- SBT
The interactive build tool
Define your tasks in Scala. Run them in parallel from
https://www.scala-sbt.org/index.html
- Grunt
The Grunt ecosystem is huge and it's growing every day. With literally hundreds of plugins to choose from, you can use Grunt to automate just about anything with a minimum of effort. If someone hasn't already built what you need, authoring and publishing your own Grunt plugin to npm is a breeze.
Why use a task runner?In one word: automation. The less work you have to do when performing repetitive tasks like minification, compilation, unit testing,
http://gruntjs.com/
- Apache Ivy
The agile dependency manager
Apache Ivy is a popular dependency manager focusing on flexibility and simplicity
https://ant.apache.org/ivy/
- Java jar dependency management using Ivy
Along with our source code, we’ve also been putting all required jars into cvs , basically for two reasons:
The build process controlled by cruisecontrol needs the jars, but cruisecontrol runs on a server where we don’t want to install an IDE (jdeveloper ). We’ve put all adf , bc4j and other required jars into cvs , and when the build process compiles the application, it first gets all the required source code and the required jars, so no need for jdeveloper .
We want version control on dependencies. If you check out the code for release 1, you need the jars that release 1 depends on. If you check out release 2, you will need different jars.
So just relying on the project dependencies in jdeveloper is not an option.
The downside to this approach however, is that we get a lot of jars in cvs , and many projects use the same jar files, so it’s bit of a waste. For some time, i thought the solution would be to move from using ant to using maven for building the code. However, some weeks ago, i discovered ivy. Ivy is a java dependency manager, which you can easily use in existing projects using ant.
http://www.andrejkoelewijn.com/blog/2005/07/14/java-jar-dependency-management-using-ivy/
PHing
it's a PHP project build system or build tool based on Apache Ant.
You can do anything with it that you could do with a traditional build system like GNU make, and its use of simple XML build files and extensible PHP "task" classes make it an easy-to-use and highly flexible build framework .
http://www.phing.info/
- Gant
Build software with Gant - IBM
Gant is a highly versatile build framework that leverages both Groovy and Apache Ant to let you implement programmatic logic while using all of
www
LuntBuild
Continuous Integration or nightly build can
Buildbot Basics
https://buildbot.net/
CMake is a cross-platform open-source meta-build system which can build, test and package software.It can be used to support multiple native build environments including make, Apple’sxcode and Microsoft Visual Studio.
https://github.com/ttroy50/cmake-examples
CMake is an open-source, cross-platform family of tools designed to build, test and package software.CMake is used to control the software compilation process using simple platform and compiler independent configurationfiles, and generate nativemakefiles and workspaces that canbe used in the compiler environment of your choice.The suite of CMake tools were created by Kitware in response to the need for a powerful, cross-platform build environment for open-source projects such as ITK and VTK
https://cmake.org/
- In a short conclusion,
CMake help youto manage and build your source codes effectively. If you have some troubles withgcc andMakefile , just move out toCMake .
https://tuannguyen68.gitbooks.io/learning-cmake-a-beginner-s-guide/content/chap1/chap1.html
- First, it is almost unreadable. Second, it does not account for any header file dependencies. In fact, if any of the header files change, there’s no way for the system to detect this at all, forcing the user to type
in make clean, then make to make everything all over again. Third, given the sheer number of files, make will take minutes to run, which kills productivity. Fourth, if you look closely at the path, youwill observe that the person writing this Makefile used a Mac withMacPorts and therefore is thekind of person who is just wrong. Fifth, this Makefileobviously won’t work for someone on Linux or Windows, even worse, it won’t work for another Mac user who used HomeBrew or compiled OpenCV from source. Sixth, some rules are just commented out, whichindicates sloppy behaviour. WritingMakefiles like this just sucks. It sucks productivity and makes me think of slow and painful death.
I’ll now show how I replaced this terrible Makefile with a clean, modular
the ease of setting up this
As these files
But what if I’m on Windows, or if I just am the
https://skandhurkat.com/post/intro-to-cmake/
- I love
CMake, it allows me to write cross-platform code and be confident that the build system would work across a choice of compilers, IDEs, and operating systems.
For example, I could
when C++ with
https://skandhurkat.com/post/intro-to-ctest/
SCons is an Open Source software construction tool—that is, a next-generation build tool. Think ofSCons as an improved, cross-platform substitute for the classic Make utility withintegrated functionality similar toautoconf /automake and compiler caches such asccache .In short, SCons is an easier, more reliable and faster way to build software.
https://scons.org/
- Yarn is a package manager for your code. It allows you to use and share code with other developers from around the world. Yarn does this quickly, securely, and reliably so you
don’t ever have to worry.
https://yarnpkg.com/en/
No comments:
Post a Comment