Jitpack actually has this really cool feature wher...
# tornadofx
a
Jitpack actually has this really cool feature where if you say, have a project on github, you don't even need to publish anything anywhere. I don't know if it would work for private repositories but it's worth trying out
n
@amanda.hinchman-dominguez jitpack private is paid afaik.. but there is a better builtin solution called mavenLocal its a folder
~/.m2/respository
on gradle if you add the
maven-publish
plugin and a publication it will automatically add tasks for pushing it to mavenLocal, i am guessing using maven that should also be a builtin feature
💯 1
i use mavenLocal a lot since i can push gradle plugins there and then use them in test projects, along with their normal dependencies
to pull dependnecies fro mthere just add
mavenLocal()