Bump commons-io:commons-io from 2.16.0 to 2.16.1 (#731)

Bumps commons-io:commons-io from 2.16.0 to 2.16.1.

---
updated-dependencies:
- dependency-name: commons-io:commons-io
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 file changed
tree: 497a01de9056856689a531d496a9a30b8a7bf50e
  1. .github/
  2. maven-failsafe-plugin/
  3. maven-surefire-common/
  4. maven-surefire-plugin/
  5. maven-surefire-report-plugin/
  6. src/
  7. surefire-api/
  8. surefire-booter/
  9. surefire-extensions-api/
  10. surefire-extensions-spi/
  11. surefire-grouper/
  12. surefire-its/
  13. surefire-logger-api/
  14. surefire-providers/
  15. surefire-report-parser/
  16. surefire-shadefire/
  17. surefire-shared-utils/
  18. .asf.yaml
  19. .editorconfig
  20. .git-blame-ignore-revs
  21. .gitattributes
  22. .gitignore
  23. CONTRIBUTING.md
  24. deploySite.sh
  25. Jenkinsfile
  26. pom.xml
  27. README.md
README.md

Contributing to Apache Maven Surefire

ASF Jira Maven Central Apache License, Version 2.0, January 2004

CI Jenkins Status Jenkins tests Jenkins JaCoCo

Verify

The Maven Community

slack forks

Project Documentation

Maven 3.0 Plugin API

Usage of maven-surefire-plugin, maven-failsafe-plugin, maven-surefire-report-plugin

Development Information

Build the Surefire project using Maven 3.2.5+ and JDK 1.8+.

  • In order to run tests for a release check during the Vote, the following memory requirements are needed:

    On Linux/Unix:

    export MAVEN_OPTS="-server -Xmx512m -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=384m -XX:+UseG1GC -XX:+UseStringDeduplication -XX:+TieredCompilation -XX:TieredStopAtLevel=1 -XX:SoftRefLRUPolicyMSPerMB=50 -Djava.awt.headless=true"
    

    On Windows:

    set MAVEN_OPTS="-server -Xmx256m -XX:MetaspaceSize=128m -XX:MaxMetaspaceSize=384m -XX:+UseG1GC -XX:+UseStringDeduplication -XX:+TieredCompilation -XX:TieredStopAtLevel=1 -XX:SoftRefLRUPolicyMSPerMB=50 -Djava.awt.headless=true"
    
  • In order to build and run the tests:

    mvn install site site:stage -P reporting,run-its
    
  • To set up the project in Eclipse IDE or IntelliJ IDEA, please follow these steps:

    • Build module surefire-shared-utils with profile ide-development and install it into the local maven repository using this Maven command:

      mvn install -P ide-development -f surefire-shared-utils/pom.xml
      
    • Build module surefire-grouper in order to generate and compile sources into target/generated-sources/javacc using this Maven command:

      mvn compile -f surefire-grouper/pom.xml
      
    • In Eclipse, select File > Import ... > Maven Project

      • Select all projects (poms) except surefire-shared-utils, enter profile ide-development in Advanced -> Profiles
      • Check module surefire-grouper has source folder target/generated-sources/javacc. If not, add it manually in the module's project properties
    • In IntelliJ, select Maven > Profiles and check ide-development

Deploying web site

See http://maven.apache.org/developers/website/deploy-component-reference-documentation.html

Built with Maven