brouter/brouter-codec/build.gradle
2021-10-06 20:43:43 +02:00

30 lines
703 B
Groovy

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