coobird / thumbnailator

Thumbnailator - a thumbnail generation library for Java
MIT License
5.14k stars 785 forks source link

Provide snapshot artifacts for in-development versions #121

Closed cazacugmihai closed 6 years ago

cazacugmihai commented 7 years ago

Is there a repository that holds the snapshot releases available for master/develop branches?

coobird commented 7 years ago

@cazacugmihai, sorry for the late reply.

There are no snapshot releases being made right now. However, that's actually a pretty good idea, since now that Thumbnailator has a develop branch, which didn't exist until recently. :)

smiklosovic commented 7 years ago

use jitpack https://jitpack.io/

coobird commented 6 years ago

I've decided to make the develop branch a SNAPSHOT version, so that I can mvn deploy the snapshot artifacts to the Sonatype OSSRH (OSS Repository Hosting). Snapshot artifacts should be accessible by using adding the following repository to the repositories section of the POM using Thumbnailator as a dependecy:

  <repository>
    <id>ossrh</id>
    <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    <snapshots>
      <enabled>true</enabled>
    </snapshots>
  </repository>
cazacugmihai commented 6 years ago

Thank you!