Com.atlassian.synchrony:synchrony-proxy:war:4.0.5 (absent)

Bamboo builds for Confluence 7.4.0 and run atlas-run-standalone for confluence is failing.
the message is
Failed to execute goal com.atlassian.maven.plugins:amps-maven-plugin:8.9.0:run-standalone (default-cli) on project standalone-pom: Unable to find/resolve artifact.: The following artifacts could not be resolved: com.atlassian.synchrony:synchrony-proxy:war:4.0.5 (absent): Could not find artifact com.atlassian.synchrony:synchrony-proxy:war:4.0.5 in maven-central (https://repo1.maven.org/maven2/) -> [Help 1]

Removing my .m2 cache didn’t solve the problem and checking on maven central it doesn’t look like v4.0.2 - v4.0.5 are available https://mvnrepository.com/artifact/com.atlassian.synchrony/synchrony-proxy

3 Likes

I also encountered the same problem

same

Unable to find/resolve artifact.: The following artifacts could not be resolved: com.atlassian.synchrony:synchrony-proxy:war:4.0.5 (absent): Could not find artifact com.atlassian.synchrony:synchrony-proxy:war:4.0.5 in maven-central (https://repo1.maven.org/maven2/)

my env:

[$]> atlas-version

ATLAS Version:    9.1.1
ATLAS Home:       /home/tt/tools/atlassian-plugin-sdk-9.1.1
ATLAS Scripts:    /home/tt/tools/atlassian-plugin-sdk-9.1.1/bin
ATLAS Maven Home: /home/tt/tools/atlassian-plugin-sdk-9.1.1/apache-maven-3.9.8
AMPS Version:     9.1.1
--------
Executing: /home/tt/tools/atlassian-plugin-sdk-9.1.1/apache-maven-3.9.8/bin/mvn --version -gs /home/tt/tools/atlassian-plugin-sdk-9.1.1/apache-maven-3.9.8/conf/settings.xml
Apache Maven 3.9.8 (36645f6c9b5079805ea5009217e36f2cffd34256)
Maven home: /home/tt/tools/atlassian-plugin-sdk-9.1.1/apache-maven-3.9.8
Java version: 17.0.12, vendor: Ubuntu, runtime: /usr/lib/jvm/java-17-openjdk-amd64
Default locale: en_US, platform encoding: UTF-8
OS name: "linux", version: "6.8.0-48-generic", arch: "amd64", family: "unix"

I’m also enjoying this same problem.

If you look at the maven repository, you’ll find that synchrony-proxy-4.0.1 is the latest version available (so why is 4.0.5 required??).

https://mvnrepository.com/artifact/com.atlassian.synchrony/synchrony-proxy

As a workaround, you can download 4.0.1 from the following link:

https://packages.atlassian.com/mvn/maven-atlassian-external/com/atlassian/synchrony/synchrony-proxy/4.0.1/synchrony-proxy-4.0.1.war

Then manually install the version you just downloaded, making maven think it’s 4.0.5:

atlas-mvn install:install-file -DgroupId=com.atlassian.synchrony -DartifactId=synchrony-proxy -Dversion=4.0.5 -Dpackaging=war -Dfile=/path/to/synchrony-proxy-4.0.1.war

atlas-run was happy after this.
Happy hackday!

1 Like