This is an automated email from the ASF dual-hosted git repository.
desruisseaux pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/maven-resources-plugin.git
omit 542eb08 Upgrade to Maven 4.0.0-rc-4.
omit 2263364 Migrate JUnit tests to new API using `Sources` instead of
`Resources`. This commit does not change the main source code or integration
tests. In particular, the old `Resources` is still tested by integration tests.
omit f5d4a8f Upgrade to Maven 4.0.0-rc-3. Contains also opportunistic
Javadoc formatting, such as missing dot at the end of first sentences (this is
required by Javadoc for identifying the summary).
This update removed existing revisions from the reference, leaving the
reference pointing at a previous point in the repository history.
* -- * -- N refs/heads/master (0f380e7)
\
O -- O -- O (542eb08)
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:
.github/workflows/maven-verify.yml | 4 +-
pom.xml | 9 +-
.../maven/plugins/resources/CopyResourcesMojo.java | 6 -
.../{Providers.java => ResourceUtils.java} | 20 +-
.../maven/plugins/resources/ResourcesMojo.java | 55 ++-
.../maven/plugins/resources/TestResourcesMojo.java | 16 +-
.../resources/AbstractPropertyUtilsTest.java | 89 ++++
.../plugins/resources/BasicPropertyUtilsTest.java | 82 ++--
.../plugins/resources/CopyResourcesMojoTest.java | 7 +-
.../resources/PropertyUtilsExceptionTest.java} | 25 +-
.../maven/plugins/resources/ResourcesMojoTest.java | 460 +++++++++++++--------
.../maven/plugins/resources/TestResourcesTest.java | 56 +--
.../resources/stub/MavenProjectBasicStub.java | 57 +++
.../resources/stub/MavenProjectBuildStub.java | 220 +++++-----
.../resources/stub/MavenProjectResourcesStub.java | 162 ++++++++
.../resources/stub/MavenProjectSourcesStub.java | 129 ------
16 files changed, 850 insertions(+), 547 deletions(-)
copy src/main/java/org/apache/maven/plugins/resources/{Providers.java =>
ResourceUtils.java} (62%)
create mode 100644
src/test/java/org/apache/maven/plugins/resources/AbstractPropertyUtilsTest.java
copy src/{main/java/org/apache/maven/plugins/resources/Providers.java =>
test/java/org/apache/maven/plugins/resources/PropertyUtilsExceptionTest.java}
(57%)
create mode 100644
src/test/java/org/apache/maven/plugins/resources/stub/MavenProjectBasicStub.java
create mode 100644
src/test/java/org/apache/maven/plugins/resources/stub/MavenProjectResourcesStub.java
delete mode 100644
src/test/java/org/apache/maven/plugins/resources/stub/MavenProjectSourcesStub.java