hudsonから、mavenのjunitにパラメータを渡す

matrix projectや、普通のプロジェクトでパラメータを渡してビルドするときに、そのパラメータをもらってテストするには

maven-surefire-plugin 2.5とかなら

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.5</version>
        <configuration>
          <systemPropertyVariables>
            <propertyName>firefox</propertyName>
          </systemPropertyVariables>
        </configuration>
      </plugin>

参考
Maven Surefire Plugin - Using TestNG
http://maven.apache.org/plugins/maven-surefire-plugin/examples/testng.html