Blog

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Image ModifiedThis article gives an overview over open source build tools created by smartics. It shows how we use them to automate our build process, reducing manual steps as much as possible.

...

Project Creation

Continuous Integration

Image ModifiedOn the first check-in of a new project, we want our integration server to build the project continuously. Therefore we create a job on our Hudson server by launching

Code Block
chj

on the project’s configuration. This uses the Alias Maven Plugin and launches Maven to use our POM to create that job on the server, using the Hudson Maven Plugin. chj is an alias for create hudson job.

...