vinumeris/updatefx

Build problem

Opened this issue · 2 comments

Hi

The build for version 1.6-Snapshot doesn't seem to work:

[ERROR] Failed to execute goal on project updatefx-examples: Could not resolve dependencies for project com.vinumeris:updatefx-examples:jar:1.6-SNAPSHOT: Failed to collect dependencies at com.vinumeris:updatefx:jar:1.6-SNAPSHOT: Failed to read artifact descriptor for com.vinumeris:updatefx:jar:1.6-SNAPSHOT: Failure to find com.vinumeris:updatefx-parent:pom:1.6-SNAPSHOT in https://oss.sonatype.org/content/repositories/snapshots was cached in the local repository, resolution will not be reattempted until the update interval of sonatype-nexus-snapshots has

ricmf commented

adding the following to the project pom solved it for me:

<repository>
  <id>mbhd-maven-release</id>
  <url>https://raw.github.com/bitcoin-solutions/mbhd-maven/master/releases</url>
  <releases/>
</repository>
<repository>
  <id>mbhd-maven-snapshot</id>
  <url>https://raw.github.com/bitcoin-solutions/mbhd-maven/master/snapshots</url>
  <!-- These artifacts change frequently during development iterations -->
  <snapshots>
    <updatePolicy>always</updatePolicy>
  </snapshots>
</repository>

Even after adding the above repository info, I'm still facing the issue. Could someone please help?