Failed to execute goal ( 401 unauthorized) Error in deploying java environment

I am currently taking the RPA course to start learning how to implement robots, in the RPA 101 course, The HelloWorld Example specifically.

 I Have created a new process named HelloWorld.Training and downloaded the Java project for the process.

Every time i try to deploy the project to test it, it keeps giving me this error 

Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (default-deploy) on project HelloWorld.Training: Failed to deploy artifacts: Could not transfer artifact com.novayre.jidoka.robot.test:HelloWorld.Training:jar:0.0.1 from/to jidoka (etsdemo.appiancloud.com/.../): Transfer failed for etsdemo.appiancloud.com/.../HelloWorld.Training-0.0.1.jar 401 Unauthorized

The following are the settings.xml and the pom.xml files that i have 

i have checked for errors regarding the credentials in the settings.xml file and i don't think that i have any.

Any suggestions what to do?

settings.xml file:

<settings>
	<servers>
		<server>
			<id>jidoka</id>
			<username>*********</username>
			<password>******************</password>
		</server>
	</servers>
	<profiles>
		<profile>
			<id>jidoka-repo</id>
			<repositories>
				<repository>
					<id>jidoka</id>
					<url>https://etsdemo.appiancloud.com/rpa/repo</url>
					<releases>
						<enabled>true</enabled>
					</releases>
					<snapshots>
						<enabled>true</enabled>
					</snapshots>
				</repository>
			</repositories>
			<pluginRepositories>
				<pluginRepository>
					<id>jidoka</id>
					<url>https://etsdemo.appiancloud.com/rpa/repo</url>
					<releases>
						<enabled>true</enabled>
					</releases>
					<snapshots>
						<enabled>true</enabled>
					</snapshots>
				</pluginRepository>
			</pluginRepositories>
		</profile>

	</profiles>
</settings>

pom.xml file:

<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.novayre.jidoka.robot</groupId>
    <artifactId>jidoka-robot-parent</artifactId>
    <version>7.2.0</version>
  </parent>
  <groupId>com.novayre.jidoka.robot.test</groupId>
  <artifactId>HelloWorld.Training</artifactId>
  <version>0.0.1</version>
  <name>HelloWorld Jidoka Robot</name>
  <url>http://www.novayre.es</url>
  <properties>
    <jidoka.serverId>jidoka</jidoka.serverId>
  </properties>
  <profiles>
    <profile>
      <id>jidoka-repo</id>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>
      <distributionManagement>
        <repository>
          <id>jidoka</id>
          <name>jidoka</name>
          <url>https://etsdemo.appiancloud.com/rpa-repo/repository/jidoka/</url>
        </repository>
      </distributionManagement>
      <repositories>
        <repository>
          <releases>
            <enabled>true</enabled>
          </releases>
          <snapshots>
            <enabled>true</enabled>
          </snapshots>
          <id>jidoka</id>
          <url>https://etsdemo.appiancloud.com/rpa-repo/repository/jidoka/</url>
        </repository>
      </repositories>
      <pluginRepositories>
        <pluginRepository>
          <releases>
            <enabled>true</enabled>
          </releases>
          <snapshots>
            <enabled>true</enabled>
          </snapshots>
          <id>jidoka</id>
          <url>https://etsdemo.appiancloud.com/rpa-repo/repository/jidoka/</url>
        </pluginRepository>
      </pluginRepositories>
    </profile>
  </profiles>
</project>

  Discussion posts and replies are publicly visible