-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
75 lines (61 loc) · 1.75 KB
/
build.gradle
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import org.gradle.api.JavaVersion
plugins {
id 'java-library'
id 'org.jsonschema2pojo' version '1.2.1'
id 'maven-publish'
}
group = 'de.ukw.ccc'
version = '0.3.0'
repositories {
mavenCentral()
}
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
dependencies {
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.7.1'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.9.3'
testImplementation 'org.assertj:assertj-core:3.24.2'
}
test {
useJUnitPlatform()
}
jsonSchema2Pojo {
annotationStyle = 'jackson'
sourceType = 'jsonschema'
includeAdditionalProperties = false
includeConstructors = true
generateBuilders = true
useInnerClassBuilders = true
constructorsRequiredPropertiesOnly = true
includeSetters = true
includeJsonTypeInfoAnnotation = false
refFragmentPathDelimiters = "#/."
includeToString = false
targetPackage = 'de.ukw.ccc.bwhc.dto'
targetVersion = "11"
}
jar.dependsOn(generateJsonSchema2Pojo)
publishing {
repositories {
maven {
name = "GitDnpmDev"
def releasesRepoUrl = uri('https://git.dnpm.dev/api/packages/public/maven')
def snapshotsRepoUrl = uri('https://git.dnpm.dev/api/packages/public-snapshots/maven')
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
credentials(HttpHeaderCredentials) {
name = "Authorization"
value = "token ${dnpm_dev_token}"
}
authentication {
header(HttpHeaderAuthentication)
}
}
}
publications {
maven(MavenPublication) {
from components.java
}
}
}