I downloaded and installed the JFrog Artifactory community version in a virtual machine.
from my host machine, I can see the JFrog admin console when I do http: //build.local: 8081 / . I created a test user in Artifactory and granted the user all rights

On my main machine, I am creating a java maven project. My POM.xml looks like
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.abhi</groupId>
<artifactId>HelloWorld</artifactId>
<version>1.0-SNAPSHOT</version>
<distributionManagement>
<snapshotRepository>
<id>MyJFrog</id>
<name>MyJFrogArtifactory</name>
<url>http://build.local:8081/libs-snapshot-local</url>
</snapshotRepository>
</distributionManagement>
</project>
Changed my ~ / .m2 / settings.xml
<servers>
<server>
<username>testuser</username>
<password>testpassword</password>
<id>MyJFrog</id>
</server>
</servers>
But still, when I do mvn deploy -e
, I get an error
org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (default-deploy) on project HelloWorld: Failed to deploy artifacts: Could not transfer artifact com.abhi:HelloWorld:jar:1.0-20151013.153708-1 from/to MyJFrog (http://build.local:8081/libs-snapshot-local): Access denied to: http://build.local:8081/libs-snapshot-local/com/abhi/HelloWorld/1.0-SNAPSHOT/HelloWorld-1.0-20151013.153708-1.jar, **ReasonPhrase: Forbidden.**
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:216)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)
at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)
at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
I have researched a lot on the Internet. most people quoted proxy questions. but I'm on the same machine. build.local is the entry I made in the hosts file and point to the IP address of the virtual machine. So there is no proxy here.