brouter/brouter-core/build.gradle
2021-10-06 20:37:15 +02:00

35 lines
844 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/<OWNER>/<REPO>.git")
}
}
}
}
dependencies {
implementation project(':brouter-mapaccess')
implementation project(':brouter-util')
implementation project(':brouter-expressions')
implementation project(':brouter-codec')
testImplementation 'junit:junit:4.13.1'
}