This is an automated email from the ASF dual-hosted git repository. martinkanters pushed a change to branch feature/MNG-7338-automatic-non-interactive-mode-in-ci in repository https://gitbox.apache.org/repos/asf/maven-integration-testing.git
discard f6c78441c [MNG-7338] Disable CI mode for certain tests which verify on log statements. add 3acdb6252 [MNG-7754] Improve plugin validation (#256) add a9f64acf9 [MNG-7697] IT - pom with emoji add 691398af9 [MNG-7767] Put related ITs into verbose mode (#258) add 86df6ebf2 [MNG-7763] Provide UTF-8 as a default value for project.build.sourceEncoding and project.reporting.outputEncoding add 367b2101f [MNG-7038] Introduce public properties to point to the root and top directories of (multi-module) project add 10fdc2e5b [MNG-7338] Disable CI mode for certain tests which verify on log statements. This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (f6c78441c) \ N -- N -- N refs/heads/feature/MNG-7338-automatic-non-interactive-mode-in-ci (10fdc2e5b) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. No new revisions were added by this update. Summary of changes: .../maven/it/MavenITmng3183LoggingToFileTest.java | 10 +- .../maven/it/MavenITmng3843PomInheritanceTest.java | 11 +- .../maven/it/MavenITmng5222MojoDeprecatedTest.java | 72 +++------- .../apache/maven/it/MavenITmng7038RootdirTest.java | 155 +++++++++++++++++++++ ...ITmng7464ReadOnlyMojoParametersWarningTest.java | 30 ++-- ...st.java => MavenITmng7697PomWithEmojiTest.java} | 26 ++-- .../org/apache/maven/it/TestSuiteOrdering.java | 2 + .../resources/test.txt => mng-4387/.mvn/empty} | 0 .../no-project => mng-7038-rootdir/.mvn}/.gitkeep | 0 .../module-a/module-a-1/pom.xml | 2 +- .../module-a/pom.xml | 5 +- .../module-b/module-b-1}/pom.xml | 6 +- .../module-a => mng-7038-rootdir/module-b}/pom.xml | 6 +- .../src/test/resources/mng-7038-rootdir/pom.xml | 92 ++++++++++++ .../src/test/resources/mng-7697-emoji/pom.xml | 10 ++ .../apache/maven/plugin/coreit/ExpressionUtil.java | 94 ++++++++----- .../apache/maven/plugin/coreit/InstanceofMojo.java | 2 +- .../maven/plugin/coreit/ExpressionUtilTest.java | 75 +++++----- .../apache/maven/plugin/coreit/PropertyUtil.java | 3 +- 19 files changed, 442 insertions(+), 159 deletions(-) create mode 100644 core-it-suite/src/test/java/org/apache/maven/it/MavenITmng7038RootdirTest.java copy core-it-suite/src/test/java/org/apache/maven/it/{MavenITmng2318LocalParentResolutionTest.java => MavenITmng7697PomWithEmojiTest.java} (78%) copy core-it-suite/src/test/resources/{it0019/src/main/resources/test.txt => mng-4387/.mvn/empty} (100%) copy core-it-suite/src/test/resources/{mng-5760-resume-feature/no-project => mng-7038-rootdir/.mvn}/.gitkeep (100%) copy core-it-suite/src/test/resources/{mng-6981-pl-should-include-children => mng-7038-rootdir}/module-a/module-a-1/pom.xml (95%) copy core-it-suite/src/test/resources/{mng-6981-pl-should-include-children => mng-7038-rootdir}/module-a/pom.xml (90%) copy core-it-suite/src/test/resources/{mng-6981-pl-should-include-children/module-a/module-a-1 => mng-7038-rootdir/module-b/module-b-1}/pom.xml (89%) copy core-it-suite/src/test/resources/{mng-6981-pl-should-include-children/module-a => mng-7038-rootdir/module-b}/pom.xml (90%) create mode 100644 core-it-suite/src/test/resources/mng-7038-rootdir/pom.xml create mode 100644 core-it-suite/src/test/resources/mng-7697-emoji/pom.xml