├── .asf.yaml ├── .gitattributes ├── .gitignore └── README.md /.asf.yaml: -------------------------------------------------------------------------------- 1 | # see https://s.apache.org/asfyaml 2 | github: 3 | description: "Apache Maven core ITs" 4 | homepage: https://maven.apache.org/core-its 5 | labels: 6 | - java 7 | - build-management 8 | - maven 9 | enabled_merge_buttons: 10 | squash: true 11 | merge: false 12 | rebase: true 13 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | *.jar binary 3 | *.war binary 4 | 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .svn 2 | target 3 | /repo 4 | .project 5 | .classpath 6 | .settings 7 | bin 8 | *.ipr 9 | *.iml 10 | *.iws 11 | .DS_Store 12 | .idea 13 | jvz-* 14 | .flattened-pom.xml 15 | .checkstyle 16 | dependency-reduced-pom.xml 17 | .factorypath 18 | .java-version 19 | build-cache/ 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 19 | Maven Core Integration Tests 20 | ======== 21 | 22 | Integration tests have been merged into Maven core repository. 23 | 24 | Branches are still available: 25 | * [maven-3.8.x](https://github.com/apache/maven-integration-testing/tree/maven-3.8.x) for Maven 3.8.x 26 | * [maven-3.9.x](https://github.com/apache/maven-integration-testing/tree/maven-3.9.x) for Maven 3.9.x 27 | * [maven-4.x](https://github.com/apache/maven-integration-testing/tree/maven-4.x) for historical reasons (should not be used) 28 | --------------------------------------------------------------------------------