This is an automated email from the ASF dual-hosted git repository.
khmarbaise pushed a change to branch MSHARED-679-package-private
in repository https://gitbox.apache.org/repos/asf/maven-artifact-transfer.git.
discard 1675e2d Added some tests.
discard ea95528 [MSHARED-679] - Make all classes package private in internal
package
add 7580ee3 [MSHARED-656] Make integration testing for different Maven
versions possible o Added separate integration test projects to make IT's
possible
add e53b16b Reformatted code * Added null checks for parameters in
ProjectDeployer and ProjectInstaller included tests to check this. * Added
working IT for ProjectInstaller.
add cc5064c Enhanced apache-rat-plugin configuration Fixed missing
copyright header.
add ef49e2f Added Maven Project Deployer IT
add 5cb6a76 Improved.
add 55eaf34 Fixed rebase issue.
add b702f01 Added argument checks. Added DefaultDependencyCollectorTest
new d11f1b8 [MSHARED-679] - Make all classes package private in internal
package
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 (1675e2d)
\
N -- N -- N refs/heads/MSHARED-679-package-private (d11f1b8)
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 1 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:
.gitignore | 1 +
pom.xml | 82 ++++++++++++
src/it/maven-artifact-deployer-plugin/pom.xml | 130 +++++++++++++++++++
.../artifact/deployer/ArtifactDeployerMojo.java | 129 +++++++++++++++++++
.../artifact/deployer/ArtifactDeployerTest.java | 120 +++++++++++++++++
.../src/test/projects/example/pom.xml | 67 ++++++++++
src/it/maven-artifact-installer-plugin/pom.xml | 130 +++++++++++++++++++
.../artifact/installer/ArtifactInstallerMojo.java | 128 ++++++++++++++++++
.../artifact/installer/ArtifactInstallerTest.java | 127 ++++++++++++++++++
.../src/test/projects/example/pom.xml | 67 ++++++++++
src/it/maven-project-deployer-plugin/pom.xml | 130 +++++++++++++++++++
.../plugin/project/deploy/ProjectDeployerMojo.java | 136 ++++++++++++++++++++
.../plugin/project/deploy/ProjectDeployerTest.java | 143 +++++++++++++++++++++
.../src/test/projects/example/pom.xml | 77 +++++++++++
src/it/maven-project-installer-plugin/pom.xml | 130 +++++++++++++++++++
.../project/install/ProjectInstallerMojo.java | 129 +++++++++++++++++++
.../project/install/ProjectInstallerTest.java | 129 +++++++++++++++++++
.../src/test/projects/example/pom.xml | 68 ++++++++++
src/it/settings.xml | 55 ++++++++
.../artifact/deploy/ArtifactDeployerException.java | 1 +
.../shared/artifact/install/ArtifactInstaller.java | 10 +-
.../install/internal/DefaultArtifactInstaller.java | 1 -
.../install/internal/Maven31ArtifactInstaller.java | 1 -
.../shared/project/deploy/ProjectDeployer.java | 4 +-
.../deploy/internal/DefaultProjectDeployer.java | 95 +++++++-------
.../shared/project/install/ProjectInstaller.java | 12 +-
.../install/internal/DefaultProjectInstaller.java | 3 +-
.../{install-project.apt => deploy-project.apt} | 21 +--
src/site/apt/install-project.apt | 9 +-
.../internal/DefaultArtifactDeployerTest.java | 12 +-
.../internal/DefaultArtifactInstallerTest.java | 3 +-
.../DefaultDependencyCoordinateTest.java | 1 +
.../internal/DefaultProjectDeployerTest.java | 82 ++++++++++++
.../internal/DefaultProjectInstallerTest.java | 27 ++--
34 files changed, 2168 insertions(+), 92 deletions(-)
create mode 100644 src/it/maven-artifact-deployer-plugin/pom.xml
create mode 100644
src/it/maven-artifact-deployer-plugin/src/main/java/org/apache/maven/plugin/artifact/deployer/ArtifactDeployerMojo.java
create mode 100644
src/it/maven-artifact-deployer-plugin/src/test/java/org/apache/maven/plugin/artifact/deployer/ArtifactDeployerTest.java
create mode 100644
src/it/maven-artifact-deployer-plugin/src/test/projects/example/pom.xml
create mode 100644 src/it/maven-artifact-installer-plugin/pom.xml
create mode 100644
src/it/maven-artifact-installer-plugin/src/main/java/org/apache/maven/plugin/artifact/installer/ArtifactInstallerMojo.java
create mode 100644
src/it/maven-artifact-installer-plugin/src/test/java/org/apache/maven/plugin/artifact/installer/ArtifactInstallerTest.java
create mode 100644
src/it/maven-artifact-installer-plugin/src/test/projects/example/pom.xml
create mode 100644 src/it/maven-project-deployer-plugin/pom.xml
create mode 100644
src/it/maven-project-deployer-plugin/src/main/java/org/apache/maven/plugin/project/deploy/ProjectDeployerMojo.java
create mode 100644
src/it/maven-project-deployer-plugin/src/test/java/org/apache/maven/plugin/project/deploy/ProjectDeployerTest.java
create mode 100644
src/it/maven-project-deployer-plugin/src/test/projects/example/pom.xml
create mode 100644 src/it/maven-project-installer-plugin/pom.xml
create mode 100644
src/it/maven-project-installer-plugin/src/main/java/org/apache/maven/plugin/project/install/ProjectInstallerMojo.java
create mode 100644
src/it/maven-project-installer-plugin/src/test/java/org/apache/maven/plugin/project/install/ProjectInstallerTest.java
create mode 100644
src/it/maven-project-installer-plugin/src/test/projects/example/pom.xml
create mode 100644 src/it/settings.xml
copy src/site/apt/{install-project.apt => deploy-project.apt} (70%)
create mode 100644
src/test/java/org/apache/maven/shared/project/deploy/internal/DefaultProjectDeployerTest.java
--
To stop receiving notification emails like this one, please contact
[email protected].