JFronny
6805ff6b6f
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Since that seems to be incompatible with manifold, that has been removed. Contains breaking changes!
23 lines
416 B
Plaintext
23 lines
416 B
Plaintext
plugins {
|
|
`java-library`
|
|
id("jf.maven-publish")
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://maven.frohnmeyer-wds.de/artifacts")
|
|
}
|
|
|
|
dependencies {
|
|
implementation("io.gitlab.jfronny:commons:1.1-SNAPSHOT")
|
|
api("io.gitlab.jfronny:commons-gson:1.1-SNAPSHOT")
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
create<MavenPublication>("maven") {
|
|
from(components["java"])
|
|
}
|
|
}
|
|
}
|