3

I've been working on a small Java project centered around Apache Sling and other technologies (some of the other supporting technologies are open source, and some aren't).

I want to share a bundle and a maven archetype from some easily accessible repo.

Are there certain public repo's I should look at that support this type of thing? I am moving the project to github, though I dont think it has any inherent maven repo support built into it.

Thanks

empire29
  • 3,729
  • 6
  • 45
  • 71

1 Answers1

3

If your code is entirely open source, then you can use the public Sonatype OSS Respository.

I've successfully used this for hosting some small OSS libraries before.

mikera
  • 105,238
  • 25
  • 256
  • 415
  • +1 Exactly what the OP is looking for. Only annoying part is that your GAV's groupId needs to be based on the SCM hosting URL – earcam Feb 20 '12 at 13:21
  • This repo looks spot on. The code I am sharing is all open source (written by me) -- the only non-OOS aspects are some dependencies in the pom.xml. thanks again. – empire29 Feb 25 '12 at 16:45
  • Guide: https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide – empire29 Feb 26 '12 at 03:43