-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
50 lines (37 loc) · 1.11 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
buildscript {
val kotlinVersion: String by extra
repositories {
mavenCentral()
google()
}
dependencies {
// don't know why but otherwise Quarkus is not able to index the classes of e-invoice-domain
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
classpath("com.android.tools.build:gradle:8.5.2")
}
}
allprojects {
group = "net.codinux.invoicing"
version = "0.7.3"
ext["sourceCodeRepositoryBaseUrl"] = "git.dankito.net/codinux/eInvoicing"
ext["projectDescription"] = "Tools to work with eInvoices according to EU standard EN 16931"
// disable Apache 2 license that is added by Gradle Scripts. I never put the library under Apache 2, but Gradle
// Scripts set it in release pom
ext["licenseName"] = ""
ext["licenseUrl"] = ""
repositories {
mavenCentral()
google()
mavenLocal()
}
}
tasks.register("publishAllToMavenLocal") {
dependsOn(
":e-invoice-domain:publishToMavenLocal"
)
}
tasks.register("publishAll") {
dependsOn(
":e-invoice-domain:publish"
)
}