plugins { id 'java-library' id 'maven-publish' } publishing { repositories { maven { name = "Github" url = uri("https://maven.pkg.github.com//") credentials { username = findProperty("github.username") password = findProperty("github.token") } } } publications { register("jar", MavenPublication) { from(components["java"]) pom { url.set("https://github.com//.git") } } } } dependencies { implementation project(':brouter-mapaccess') implementation project(':brouter-util') implementation project(':brouter-expressions') implementation project(':brouter-codec') testImplementation 'junit:junit:4.13.1' }