Skip to content

Instantly share code, notes, and snippets.

@ctrueden
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ctrueden/94bb1d3b6b8398aa1307 to your computer and use it in GitHub Desktop.
Save ctrueden/94bb1d3b6b8398aa1307 to your computer and use it in GitHub Desktop.
Dependency resolution of omero:blitz:5.0.2-ice35-b26
mvn -U dependency:list
[INFO] Scanning for projects...
[INFO]
[INFO] Using the builder org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder with a thread count of 1
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building sauce 0.1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
Downloading: http://artifacts.openmicroscopy.org/artifactory/repo/ome/bio-formats/5.0.2-ice35-b26/bio-formats-5.0.2-ice35-b26.pom
Downloading: http://repo.maven.apache.org/maven2/ome/bio-formats/5.0.2-ice35-b26/bio-formats-5.0.2-ice35-b26.pom
[WARNING] The POM for ome:bio-formats:jar:5.0.2-ice35-b26 is missing, no dependency information available
Downloading: http://artifacts.openmicroscopy.org/artifactory/repo/hsqldb/hsqldb/1.8.0.2/hsqldb-1.8.0.2.pom
Downloading: http://repo.maven.apache.org/maven2/hsqldb/hsqldb/1.8.0.2/hsqldb-1.8.0.2.pom
[WARNING] The POM for hsqldb:hsqldb:jar:1.8.0.2 is missing, no dependency information available
Downloading: http://artifacts.openmicroscopy.org/artifactory/repo/org/springframework/org.springframework.context.support/3.0.1.RELEASE-A/org.springframework.context.support-3.0.1.RELEASE-A.pom
Downloading: http://repo.maven.apache.org/maven2/org/springframework/org.springframework.context.support/3.0.1.RELEASE-A/org.springframework.context.support-3.0.1.RELEASE-A.pom
[WARNING] The POM for org.springframework:org.springframework.context.support:jar:3.0.1.RELEASE-A is missing, no dependency information available
Downloading: http://artifacts.openmicroscopy.org/artifactory/repo/org/springframework/ldap/spring-ldap/1.3.0.RELEASE-all/spring-ldap-1.3.0.RELEASE-all.pom
Downloading: http://repo.maven.apache.org/maven2/org/springframework/ldap/spring-ldap/1.3.0.RELEASE-all/spring-ldap-1.3.0.RELEASE-all.pom
[WARNING] The POM for org.springframework.ldap:spring-ldap:jar:1.3.0.RELEASE-all is missing, no dependency information available
Downloading: http://artifacts.openmicroscopy.org/artifactory/repo/ome/bio-formats/5.0.2-ice35-b26/bio-formats-5.0.2-ice35-b26.jar
Downloading: http://artifacts.openmicroscopy.org/artifactory/repo/hsqldb/hsqldb/1.8.0.2/hsqldb-1.8.0.2.jar
Downloading: http://artifacts.openmicroscopy.org/artifactory/repo/org/springframework/org.springframework.context.support/3.0.1.RELEASE-A/org.springframework.context.support-3.0.1.RELEASE-A.jar
Downloading: http://artifacts.openmicroscopy.org/artifactory/repo/org/springframework/ldap/spring-ldap/1.3.0.RELEASE-all/spring-ldap-1.3.0.RELEASE-all.jar
Downloading: http://repo.maven.apache.org/maven2/ome/bio-formats/5.0.2-ice35-b26/bio-formats-5.0.2-ice35-b26.jar
Downloading: http://repo.maven.apache.org/maven2/hsqldb/hsqldb/1.8.0.2/hsqldb-1.8.0.2.jar
Downloading: http://repo.maven.apache.org/maven2/org/springframework/org.springframework.context.support/3.0.1.RELEASE-A/org.springframework.context.support-3.0.1.RELEASE-A.jar
Downloading: http://repo.maven.apache.org/maven2/org/springframework/ldap/spring-ldap/1.3.0.RELEASE-all/spring-ldap-1.3.0.RELEASE-all.jar
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 2.280 s
[INFO] Finished at: 2014-06-05T18:19:09+01:00
[INFO] Final Memory: 8M/81M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project sauce: Could not resolve dependencies for project tasty:sauce:jar:0.1.0-SNAPSHOT: The following artifacts could not be resolved: ome:bio-formats:jar:5.0.2-ice35-b26, hsqldb:hsqldb:jar:1.8.0.2, org.springframework:org.springframework.context.support:jar:3.0.1.RELEASE-A, org.springframework.ldap:spring-ldap:jar:1.3.0.RELEASE-all: Could not find artifact ome:bio-formats:jar:5.0.2-ice35-b26 in ome.repo (http://artifacts.openmicroscopy.org/artifactory/repo) -> [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/DependencyResolutionException
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>tasty</groupId>
<artifactId>sauce</artifactId>
<version>0.1.0-SNAPSHOT</version>
<repositories>
<repository>
<id>ome.repo</id>
<url>http://artifacts.openmicroscopy.org/artifactory/repo</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>omero</groupId>
<artifactId>blitz</artifactId>
<version>5.0.2-ice35-b26</version>
</dependency>
</dependencies>
</project>
@joshmoore
Copy link

See http://ci.openmicroscopy.org/job/OMERO-5.0-merge-maven-client/10/ which is testing via the -Pdev profile which uses snapshots.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment