The archetype download fails

Hi

I am getting an error message below.

Could you tell me how to solve it.

the whole message displayed by the Configurator

-----------------------------------------------------------
[INFO] Scanning for projects...
[INFO] Downloading from SERVER_ID: mnvk.appian.community/.../maven-metadata.xml
[INFO] Downloading from SERVER_ID: mnvk.appian.community/.../maven-metadata.xml
[WARNING] Could not transfer metadata org.apache.maven.plugins/maven-metadata.xml from/to SERVER_ID (mnvk.appian.community/.../repo): authentication failed for mnvk.appian.community/.../maven-metadata.xml, status: 401 Unauthorized
[WARNING] Could not transfer metadata org.codehaus.mojo/maven-metadata.xml from/to SERVER_ID (mnvk.appian.community/.../repo): authentication failed for mnvk.appian.community/.../maven-metadata.xml, status: 401 Unauthorized
[INFO] Downloading from SERVER_ID: mnvk.appian.community/.../maven-metadata.xml
[WARNING] Could not transfer metadata org.apache.maven.plugins:maven-archetype-plugin/maven-metadata.xml from/to SERVER_ID (mnvk.appian.community/.../repo): authentication failed for mnvk.appian.community/.../maven-metadata.xml, status: 401 Unauthorized
[INFO]
[INFO] ------------------< org.apache.maven:standalone-pom >-------------------
[INFO] Building Maven Stub Project (No POM) 1
[INFO] --------------------------------[ pom ]---------------------------------
[WARNING] org.apache.maven.plugins/maven-metadata.xmlfailed to transfer from mnvk.appian.community/.../repo during a previous attempt. This failure was cached in the local repository and resolution will not be reattempted until the update interval of SERVER_ID has elapsed or updates are forced. Original error: Could not transfer metadata org.apache.maven.plugins/maven-metadata.xml from/to SERVER_ID (mnvk.appian.community/.../repo): authentication failed for mnvk.appian.community/.../maven-metadata.xml, status: 401 Unauthorized
[WARNING] org.codehaus.mojo/maven-metadata.xmlfailed to transfer from mnvk.appian.community/.../repo during a previous attempt. This failure was cached in the local repository and resolution will not be reattempted until the update interval of SERVER_ID has elapsed or updates are forced. Original error: Could not transfer metadata org.codehaus.mojo/maven-metadata.xml from/to SERVER_ID (mnvk.appian.community/.../repo): authentication failed for mnvk.appian.community/.../maven-metadata.xml, status: 401 Unauthorized
[INFO]
[INFO] >>> maven-archetype-plugin:3.2.1:generate (default-cli) > generate-sources @ standalone-pom >>>
[INFO]
[INFO] <<< maven-archetype-plugin:3.2.1:generate (default-cli) < generate-sources @ standalone-pom <<<
[INFO]
[INFO]
[INFO] --- maven-archetype-plugin:3.2.1:generate (default-cli) @ standalone-pom ---
[INFO] Generating project in Batch mode
[WARNING] No archetype found in remote catalog. Defaulting to internal catalog
[WARNING] Archetype not found in any catalog. Falling back to central repository.
[WARNING] Add a repository with id 'archetype' in your settings.xml if archetype's repository is elsewhere.
[INFO] Downloading from SERVER_ID: mnvk.appian.community/.../robot-archetype-8.6.0.pom
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 26.303 s
[INFO] Finished at: 2022-12-26T15:56:01+09:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:3.2.1:generate (default-cli) on project standalone-pom: The desired archetype does not exist (com.novayre.jidoka.robot:robot-archetype:8.6.0) -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException

■settings.xml

----------------------------------------------------------

<?xml version="1.0" encoding="UTF-8" standalone="no"?><!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

www.apache.org/.../LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
--><settings xmlns="">maven.apache.org/.../1.0.0" xmlns:xsi="">www.w3.org/.../XMLSchema-instance" xsi:schemaLocation="maven.apache.org/.../1.0.0 ">maven.apache.org/.../settings-1.0.0.xsd">


<servers>
<server>
<id>jidoka</id>
<username>{username}</username>
<password>{password} </password>
</server>

<!-- Server authentication information. This is used to access the repositories listed below -->
<server>
<id>SERVER_ID</id> <!-- Name/ID used to refer this server credentials -->
<username>{username}</username> <!-- Your Appian user name -->
<password>{password}</password> <!-- Your Maven API key -->
</server>

</servers>

<profiles>

<!-- Jidoka profile -->
<profile>
<!--
| This ID will be used as reference in order to make use of the following repositories. You will
| use it when creating your first robot with the mvm command line tool using the "-P" flag.
-->
<id>jidoka-repo</id>
<repositories>
<repository>
<id>SERVER_ID</id> <!-- This must match with one of the servers IDs defined before -->
<!--
| This URL refers to the server containing all the dependencies required to create the
| base robot. Your credentials given before will be used to access this server.
| The literal #subdomain# must be replaced with your
| instance. You may need to replace the full URL.
-->
<url>mnvk.appian.community/.../url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

<pluginRepositories>
<pluginRepository>
<id>SERVER_ID</id> <!-- This must match with one of the server IDs defined before -->
<!--
| Same as above, your credentials will be used once again to access this server.
-->
<url>mnvk.appian.community/.../url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</profile>

</profiles>
<proxies>
<proxy>
<active>true</active>
<protocol>http</protocol>
<host>{hostname}</host>
<port>{port}</port>
<username>{Username}</username>
<password>{Password}</password>
</proxy>
</proxies>
</settings>

  Discussion posts and replies are publicly visible