This is an automated email from the ASF dual-hosted git repository.

khmarbaise pushed a change to branch MNG-7451
in repository https://gitbox.apache.org/repos/asf/maven.git


 discard e37f7efcd WIP: Continued.
 discard 0f3a1c803 WIP: Cleanup Tests.
     add 702f52d0e [MNG-7457] Warn about deprecated plugin Mojo
     add ca9aa8f4f [MNG-7466] Align assembly XSD version with plugin used (#728)
     add 93196d4bb [MNG-7404] Drop deprecated prefixless expressions
     add 1e95011a3 configure Jira integration
     add 3dd0afd89 [MNG-7464] Warn about using read-only parameters for Mojo in 
configuration
     add 1c22f9452 [MNG-7459] Revert "[MNG-7347] SessionScoped beans should be 
singletons for a given session (#621)"
     add a83ed86c4 [MNG-7471] Make Resolver util and connector-basic provided 
(#732)
     add ef1c17f62 [MNG-7405] Update animal-sniffer to 1.21 (#671)
     add fc1962e65 [MNG-7478] Transport selection should use config properties 
(#739)
     add 3ad4fe5a1 [MNG-7448] Don't ignore bin/ otherwise bin/ in apache-maven 
module cannot be readded
     add 6767f2500 [MNG-7486] Create a multiline message helper for boxed log 
messages
     add 2a276d0dc [MNG-7487] Fix deadlock during forked lifecycle executions
     add 7da0214d1 [MNG-7476] Display a warning when an aggregator mojo is 
locking other mojos executions
     add 3d4516720 [MNG-7488] Upgrade SLF4J to 1.7.36
     add 7bd5fb38b deploy master, 3.8.x and 3.9.x
     add 47fb9e812 [MNG-7491] Update parent POM 36 (#747)
     add 54f9d91eb [MNG-7468] Check unsupported plugins parameters in 
configuration
     add df38f1c07 Update DOAP with Maven 3.8.6 release
     add 415eaf31d [MNG-7160] Ability to customize core extensions classloaders 
(#616)
     add d82ab09ae [MNG-7499] Upgrade Maven Resolver to 1.8.1
     new 402a9cbfb WIP: Cleanup Tests.
     new bf40a92bc WIP: Continued.

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   (e37f7efcd)
            \
             N -- N -- N   refs/heads/MNG-7451 (bf40a92bc)

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.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .asf.yaml                                          |   9 ++
 .gitignore                                         |   2 -
 Jenkinsfile                                        |   2 +-
 apache-maven/src/assembly/bin.xml                  |   4 +-
 apache-maven/src/assembly/dir.xml                  |   4 +-
 apache-maven/src/assembly/src.xml                  |   4 +-
 ...f4j-api-1.7.32.txt => MIT-slf4j-api-1.7.36.txt} |   0
 doap_Maven.rdf                                     |  25 ++++
 .../apache/maven/DefaultArtifactFilterManager.java |   6 +-
 .../maven/classrealm/DefaultClassRealmManager.java |   8 +-
 .../extension/internal/CoreExportsProvider.java    |  22 ++--
 .../maven/internal/MultilineMessageHelper.java     |  91 ++++++++++++++
 .../DefaultRepositorySystemSessionFactory.java     |  27 +++-
 .../internal/DefaultMojoExecutionConfigurator.java |  87 +++++++++++++
 .../lifecycle/internal/LifecycleModuleBuilder.java |  13 +-
 .../maven/lifecycle/internal/LifecycleStarter.java |   3 +-
 .../maven/lifecycle/internal/MojoExecutor.java     | 106 ++++++++++++----
 .../maven/lifecycle/internal/ReactorContext.java   |  14 ++-
 .../lifecycle/internal/builder/BuilderCommon.java  |  34 ++---
 ...=> AbstractMavenPluginParametersValidator.java} | 131 +++++++++++---------
 .../plugin/internal/DefaultMavenPluginManager.java |  11 +-
 .../plugin/internal/DeprecatedPluginValidator.java |  87 ++++---------
 .../ReadOnlyPluginParametersValidator.java         |  80 ++++++++++++
 .../maven/session/scope/internal/SessionScope.java | 137 ++++++++++++---------
 .../main/resources/META-INF/maven/extension.xml    |   5 +
 .../maven/internal/MultilineMessageHelperTest.java |  71 +++++++++++
 .../apache/maven/project/PomConstructionTest.java  |  38 +-----
 .../session/scope/internal/SessionScopeTest.java   |  81 ------------
 .../child/pom.xml                                  | 104 ----------------
 .../unprefixed-expression-interpolation/pom.xml    |  36 ------
 maven-embedder/pom.xml                             |   2 +-
 .../internal/BootstrapCoreExtensionManager.java    |  49 +++++++-
 maven-embedder/src/main/mdo/core-extensions.mdo    |   8 ++
 .../AbstractStringBasedModelInterpolator.java      |  15 +--
 .../interpolation/ProblemDetectingValueSource.java |  86 -------------
 .../StringSearchModelInterpolator.java             |   2 +-
 .../StringVisitorModelInterpolator.java            |   2 +-
 .../AbstractModelInterpolatorTest.java             |  16 +--
 maven-model/pom.xml                                |   5 -
 pom.xml                                            |  27 +---
 40 files changed, 793 insertions(+), 661 deletions(-)
 rename 
apache-maven/src/main/appended-resources/licenses/{MIT-slf4j-api-1.7.32.txt => 
MIT-slf4j-api-1.7.36.txt} (100%)
 create mode 100644 
maven-core/src/main/java/org/apache/maven/internal/MultilineMessageHelper.java
 copy 
maven-core/src/main/java/org/apache/maven/plugin/internal/{DeprecatedPluginValidator.java
 => AbstractMavenPluginParametersValidator.java} (50%)
 create mode 100644 
maven-core/src/main/java/org/apache/maven/plugin/internal/ReadOnlyPluginParametersValidator.java
 create mode 100644 
maven-core/src/test/java/org/apache/maven/internal/MultilineMessageHelperTest.java
 delete mode 100644 
maven-core/src/test/java/org/apache/maven/session/scope/internal/SessionScopeTest.java
 delete mode 100644 
maven-core/src/test/resources-project-builder/unprefixed-expression-interpolation/child/pom.xml
 delete mode 100644 
maven-core/src/test/resources-project-builder/unprefixed-expression-interpolation/pom.xml
 delete mode 100644 
maven-model-builder/src/main/java/org/apache/maven/model/interpolation/ProblemDetectingValueSource.java

Reply via email to