Configured publishing
This commit is contained in:
parent
cee0ca6f17
commit
a0540c005d
|
@ -0,0 +1,3 @@
|
|||
[submodule "gradle/scripts"]
|
||||
path = gradle/scripts
|
||||
url = git@github.com:dankito/GradleScripts.git
|
|
@ -60,4 +60,9 @@ kotlin {
|
|||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
ext["customArtifactId"] = "epc-qr-code"
|
||||
|
||||
apply(from = "../gradle/scripts/publish-codinux-repo.gradle.kts")
|
|
@ -11,13 +11,31 @@ buildscript {
|
|||
}
|
||||
|
||||
|
||||
group = "net.codinux.banking.epcqrcode"
|
||||
version = "1.0.0-SNAPSHOT"
|
||||
|
||||
|
||||
allprojects {
|
||||
group = "net.codinux.banking.epcqrcode"
|
||||
version = "1.0.0-SNAPSHOT"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
google()
|
||||
maven { setUrl("https://maven.dankito.net/api/packages/codinux/maven") }
|
||||
}
|
||||
|
||||
|
||||
ext["projectDescription"] = "Generate or parse EPC QR Codes"
|
||||
|
||||
ext["sourceCodeRepositoryBaseUrl"] = "git.dankito.net/codinux/EpcQrCode"
|
||||
}
|
||||
|
||||
|
||||
tasks.register("publishAllToMavenLocal") {
|
||||
dependsOn(
|
||||
":EpcQrCode:publishToMavenLocal"
|
||||
)
|
||||
}
|
||||
|
||||
tasks.register("publishAll") {
|
||||
dependsOn(
|
||||
":EpcQrCode:publish"
|
||||
)
|
||||
}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Subproject commit 88f1b01167e6a34b5b91f8797845bca0b7e4d3ab
|
Loading…
Reference in New Issue