Currently I am getting the following output when I try to run using Cucumber 1.1.3:
-------------------------------------------------------
 T E S T S
-------------------------------------------------------
Running CucumberTest
log4j:WARN No appenders could be found for logger (org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager).
log4j:WARN Please initialize the log4j system properly.
@selenium @browse
Feature: Browse Tests
 As a user
 I should be able to browser through all products
 filter my results
 and click an item to view the Product Detail Page.
Tests run: 1, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 9.254 sec <<< FAILURE!
Results :
Tests in error:Â
 Feature: Browse Tests: -1
Tests run: 1, Failures: 0, Errors: 1, Skipped: 0
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 13.680s
[INFO] Finished at: Fri Apr 19 15:07:15 EDT 2013
[INFO] Final Memory: 16M/146M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.7.2:test (default-test) on project Cucumber_Automation: There are test failures.
[ERROR]Â
[ERROR] Please refer to /Users/jason/Desktop/shared github/testscripts/target/surefire-reports for the individual test results.
[ERROR] -> [Help 1]
[ERROR]Â
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]Â
[ERROR] For more information about the errors and possible solutions, please read the following articles:
-------------------------------------------------------
 T E S T S
-------------------------------------------------------
Running CucumberTest
log4j:WARN No appenders could be found for logger (org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager).
log4j:WARN Please initialize the log4j system properly.
@selenium @browse
Feature: Browse Tests
 As a user
 I should be able to browser through all products
 filter my results
 and click an item to view the Product Detail Page.
 Background:             # Finding_Browse_page_load.feature:8
  Given I navigate to the home page # Login_Steps.navigate_step(String)
  And I am not logged in       # Login_Steps.login_setup()
 @furniture @smoke-tests @finished @heart-beat @test
 Scenario: Browse Furniture Smoke Test - L1 category page load                     # Finding_Browse_page_load.feature:13
  When I click the furniture main navigation link                           # Browse_Steps.click_link(String)
  Then the browse furniture page header is updated to match the clicked facet             # Browse_Steps.browse_header_check(String,String)
  And there are search results on the page                               # Browse_Steps.verify_there_are_results(String)
  And the browse furniture page category l2 facets should appear                    # Browse_Steps.facet_level_checker(String,String,String,String)
  And the price facet section is appearing on the browse furniture page left navigation        # Browse_Steps.facet_section_is_displayed_check(String,String,String)
  And the creator facet section is appearing on the browse furniture page left navigation       # Browse_Steps.facet_section_is_displayed_check(String,String,String)
  And the location facet section is appearing on the browse furniture page left navigation       # Browse_Steps.facet_section_is_displayed_check(String,String,String)
  And the dealer organization facet section is appearing on the browse furniture page left navigation # Browse_Steps.facet_section_is_displayed_check(String,String,String)
  And the browse url is correct                                    # Browse_Steps.the_browse_url_is_correct(String)
  And the "Display Measurements" checkbox is defaulted to true                     # Browse_Steps.the_checkbox_is_defaulted_to_true(String,String)
  And the "Sold Items" checkbox is defaulted to true                          # Browse_Steps.the_checkbox_is_defaulted_to_true(String,String)
  And the "Only This Week's Items" checkbox is defaulted to false                   # Browse_Steps.the_checkbox_is_defaulted_to_true(String,String)
Tests run: 15, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 33.612 sec
Results :
Tests run: 15, Failures: 0, Errors: 0, Skipped: 0
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 38.394s
[INFO] Finished at: Fri Apr 19 15:42:40 EDT 2013
[INFO] Final Memory: 16M/146M
[INFO] ------------------------------------------------------------------------
Based on the change logs it doesn't seem like anything was drastically changed or removed, but I am not sure why my tests aren't working anymore. Is this maybe a different plugin's issue? (Surefire cucumber report issue)