(note: replace ORGANIZATION
and PROJECT
)
git clone git clone [email protected]:ORGANIZATION/PROJECT.git my-repository
cd my-repository
git branch repository
git checkout repository
rm -rf file1 file2 file3 .. etc
(note: replace YOUR_GROUP
, YOUR_ARTIFACT
, YOUR_VERSION
and YOUR_JAR_FILE
)
mvn install:install-file -DgroupId=YOUR_GROUP -DartifactId=YOUR_ARTIFACT -Dversion=YOUR_VERSION -Dfile=YOUR_JAR_FILE -Dpackaging=jar -DgeneratePom=true -DlocalRepositoryPath=. -DcreateChecksum=true
YOUR_JAR_FILE
should point to an existent jar file, this is why it's best to create your repository branch in a different folder, so you can reference the existing jar in /your/project/path/target/artifact-x.y.z.jar
git add -A . && git commit -m "released version X.Y.Z"
git push origin repository
The repository url you just created is https://raw.github.com/YOUR_ORGANIZATION/YOUR_ARTIFACT/repository/
@dgallegos
The current state of Github maven registries is severely lacking in usability.
You can't delete packages if your repository was a fork, so your only option is to delete the fork and recreate the packages in a private repository.
Also don't bother uploading snapshots because you will never be able to resolve them in maven/gradle. It's quite annoying because they said in their blog, that they now support snapshots, but now I'm not sure what they meant by this.
I did some manual digging and I found that it even messes up the names of the packages.
For example I had uploaded a package with the name
groupid: com.foo artifactid: com.foo.bar version: 0.1.0-SNAPSHOT
.When I sent a
GET
request tohttps://maven.pkg.github.com/<owner>/<repo>/com/foo/com.foo.bar/maven-metadata.xml
, I get this back:Doesn't make sense.
So I'd say don't bother using it yet until they've worked out the issues.