Book Image

Hudson 3 Essentials

By : Lloyd H. Meinholz
Book Image

Hudson 3 Essentials

By: Lloyd H. Meinholz

Overview of this book

Continuous integration (CI) with automated test execution has been widely adopted in recent years. The concept behind CI has changed how companies look at Build Management, Release Management, Deployment Automation, and Test Orchestration. Hudson is a CI solution that provides executives, business managers, software developers, and architects with a better sense of the development progress and code quality of projects throughout their development life cycle.A fast-paced and hands-on introduction to the key features of Hudson 3. You will be introduced to tools that can be used to improve the quality of software development projects. You will also learn how to install and secure Hudson in a variety of IT environments. Staring with a brief introduction to Hudson and how it helps many IT organizations deliver high quality software, Hudson 3 Essentials will show you how Hudson can be installed and deployed in various environments. You will also be guided through the different methods of securing your Hudson installation. Moving on from the basics, you will be introduced to several important Hudson plugins and learn how to extend its functionality by developing your own plugins. You will be shown how Hudson can be used to build different types of applications and how it can deploy a web application to an application server. Finally, you will discover how Hudson can be used to perform automated testing on software applications, and how to generate reports that describe the results.
Table of Contents (15 chapters)
Hudson 3 Essentials
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

JBoss AS 7 installation and setup


JBoss AS (Application Server) 7 is an open source application server from RedHat. JBoss AS 7 implements the JEE 6 specifications, which include the Java Servlet and JavaServer Pages specifications, as well as other parts of the JEE6 specification. The latest community version of the JBoss AS 7 server is 7.1.1 Final, and it will be used for the examples in this chapter.

The JBoss AS 7 application server can be downloaded from http://www.jboss.org/jbossas/downloads.

Decompress the JBoss AS 7 file in the ${HOME} directory on Linux systems or C: on Windows systems.

Set the JBOSS_HOME environment variable and create the JBoss AS 7 management user on Linux:

export JBOSS_HOME=${HOME}/jboss-as-7.1.1.Final
${JBOSS_HOME}/bin/add-user.sh

Set the JBOSS_HOME environment variable, and create the JBoss AS 7 management user on Windows:

set JBOSS_HOME=C:\jboss-as-7.1.1.Final%JBOSS_HOME%\bin\add-user.bat

For the add-user prompts, answer the following series of questions as...