Archived

This forum has been archived. Please start a new discussion on GitHub.

Ice 3.6.0 jar doesn't look right in your hosted repo?

Hi All,

I've just been trying to upgrade a java project that's been using the 3.6b version of the com.zeroc.ice artifact in your hosted repo.

This has been running fine ( thanks for putting it up BTW). Now 3.6 proper is up I've tried upgrading to 3.6 proper ( I believe version number is now 3.6.0 ).

Looks wierd. Looks like the icebox jar may have been uploaded with the name of the ice jar. ( This might be possible if a bad script running the maven install plugin was used, speaking from...erm... personal experience).

Here is the pom snippet in question. If I comment out the 3.6b and try with the 3.6.0 version my project gets messed up. Inspecting the dependencies in idea I can see that what idea *thinks* is the ice jar contains only IceBox code. i.e. compilation fails miserably.

Any ideas?

Cheers,

A.

Pom snippet...
<dependencies>
      <dependency>
        <groupId>com.zeroc</groupId>
        <artifactId>ice</artifactId>
        <!--<version>3.6.0</version> -->
        <version>3.6b</version>
      </dependency>
    </dependencies>

My repositories snippet...
  <repositories>
    <repository>
      <id>zeroc</id>
      <name>Zeroc's hosted repo</name>
      <url>https://repo.zeroc.com/nexus/content/repositories/releases</url>
    </repository>
  </repositories>


Comments