The Maven Artifactory integrates in your build to allow you to do the following:
- Resolve artifacts from Artifactory.
- Capture the full build information and publish it to Artifactory.
- Deploy all build Artifacts to Artifactory.
To learn how to use the Maven Artifactory plugin, please visit the Maven Artifactory plugin user guide.
To build the plugin sources, please follow these steps:
- Clone the code from Git.
- Install the plugin by running the following Maven command:
mvn clean install
- If you'd like to run the plugin's tests, run the following commands:
mvn clean install
mvn verify -DskipITs=false
The above command run both unit and integration tests.
- In order to remote debug the integration tests, add
debugITs=true
property to the test command and add a break point in your IDE:
mvn clean install
mvn verify -DskipITs=false -DdebugITs=true
After running the above command, you should start a remote debugging session on port 5005 and wait until the code reaches the break point.
We welcome pull requests from the community.
If the existing tests do not already cover your changes, please add tests.
The release notes are available here.