I am trying to start a Confluence standalone instance using amps-maven-plugin
with the following command:
atlas-run-standalone --product confluence --version 8.9.8 --maven-plugin-version 8.11.4 --jvmargs '-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005'
However, the build fails with this error:
Execution default-cli of goal com.atlassian.maven.plugins:amps-maven-plugin:8.11.4:run-standalone failed:
java.io.FileNotFoundException: https://marketplace.atlassian.com/rest/1.0/plugins/atlassian-plugin-sdk-deb
I checked the URL using:
curl -I https://marketplace.atlassian.com/rest/1.0/plugins/atlassian-plugin-sdk-deb
and got a 404 Not Found
response.
Steps Taken:
- Verified internet connectivity.
- Checked Atlassian Marketplace URL manually (returns 404).
- Tried running
atlas-run-standalone --offline
then it’s working fine for me.
Would appreciate any insights or fixes from the community. Thanks in advance!