blob: 5643d462944e8a20d678b05b019dab625834e2be (
plain)
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
import com.bmuschko.gradle.docker.tasks.image.DockerBuildImage
import com.bmuschko.gradle.docker.tasks.image.DockerPushImage
plugins {
id 'java'
id 'io.quarkus'
id "com.bmuschko.docker-remote-api" version "${dockerPluginVersion}"
id "com.diffplug.gradle.spotless" version "${spotlessPluginVersion}"
id "com.github.ben-manes.versions" version "${versionsPluginVersion}"
id "se.patrikerdes.use-latest-versions" version "${useLatestVersionsPluginVersion}"
}
sourceCompatibility = 11
targetCompatibility = 11
repositories {
mavenLocal()
mavenCentral()
}
tasks {
dependencyUpdates {
checkConstraints = true
gradleReleaseChannel = "current"
revision = "release"
}
}
dependencies {
implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}")
implementation 'io.quarkus:quarkus-agroal'
implementation 'io.quarkus:quarkus-elytron-security-properties-file'
implementation 'io.quarkus:quarkus-flyway'
implementation 'io.quarkus:quarkus-hibernate-orm-panache'
implementation 'io.quarkus:quarkus-hibernate-validator'
implementation 'io.quarkus:quarkus-jdbc-postgresql'
implementation 'io.quarkus:quarkus-kubernetes'
implementation 'io.quarkus:quarkus-mailer'
implementation 'io.quarkus:quarkus-oidc'
implementation 'io.quarkus:quarkus-resteasy'
implementation 'io.quarkus:quarkus-resteasy-jsonb'
implementation 'io.quarkus:quarkus-resteasy-qute'
implementation 'io.quarkus:quarkus-scheduler'
implementation 'io.quarkus:quarkus-smallrye-jwt'
//implementation 'io.quarkus:quarkus-elytron-security'
//implementation 'io.quarkus:quarkus-elytron-security-jdbc'
//implementation 'io.quarkus:quarkus-elytron-security-oauth2'
//implementation 'io.quarkus:quarkus-keycloak-authorization'
//implementation 'io.quarkus:quarkus-quartz'
//implementation 'io.quarkus:quarkus-smallrye-fault-tolerance'
//implementation 'io.quarkus:quarkus-smallrye-health'
//implementation 'io.quarkus:quarkus-smallrye-metrics'
//implementation 'io.quarkus:quarkus-smallrye-openapi'
//implementation 'jakarta.transaction:jakarta.transaction-api'
//implementation 'org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec'
//implementation 'jakarta.persistence:jakarta.persistence-api'
implementation "org.bitbucket.b_c:jose4j"
implementation 'org.mapstruct:mapstruct'
compileOnly 'org.mapstruct:mapstruct-processor'
compileOnly 'com.google.code.findbugs:jsr305'
implementation 'com.vladmihalcea:hibernate-types-52'
implementation "jakarta.security.jacc:jakarta.security.jacc-api"
implementation "net.java.dev.jna:jna"
testImplementation 'io.quarkus:quarkus-junit5'
testImplementation 'io.rest-assured:rest-assured'
implementation 'org.jsoup:jsoup:1.12.1'
implementation "com.vladsch.flexmark:flexmark-all"
constraints {
implementation "com.vladmihalcea:hibernate-types-52:${hibernateTypesVersion}"
implementation "org.mapstruct:mapstruct:${mapstructVersion}"
compileOnly "org.mapstruct:mapstruct-processor:${mapstructVersion}"
compileOnly "com.google.code.findbugs:jsr305:${findbugsJsr305Version}"
implementation "jakarta.security.jacc:jakarta.security.jacc-api:${jakartaJaccVersion}"
implementation "net.java.dev.jna:jna:${jnaVersion}"
implementation "org.bitbucket.b_c:jose4j:${jose4jVersion}"
implementation "com.vladsch.flexmark:flexmark-all:${flexmarkVersion}"
}
}
spotless {
java {
googleJavaFormat()
removeUnusedImports()
}
}
group "eu.mulk"
version "${projectVersion}"
task yarnInstall(type:Exec) {
def resourceDir = "src/main/resources/META-INF/resources"
onlyIf { !project.hasProperty('skipWeb') }
inputs.file "${resourceDir}/package.json"
outputs.dir "${resourceDir}/node_modules"
outputs.file "${resourceDir}/yarn.lock"
workingDir resourceDir
commandLine "yarn", "install"
}
task snowpack(type:Exec) {
def resourceDir = "src/main/resources/META-INF/resources"
onlyIf { !project.hasProperty('skipWeb') }
dependsOn yarnInstall
inputs.dir "${resourceDir}/node_modules"
inputs.file "${resourceDir}/yarn.lock"
inputs.file "${resourceDir}/package.json"
outputs.dir "${resourceDir}/web_modules"
workingDir resourceDir
commandLine "yarn", "run", "snowpack"
}
task compileWeb {
dependsOn snowpack
doLast {}
}
processResources {
exclude("META-INF/resources/node_modules/**/*")
exclude("META-INF/resources/package.json")
exclude("META-INF/resources/yarn.lock")
}
quarkusBuild.dependsOn compileWeb
task buildDocker(type: DockerBuildImage) {
onlyIf { !project.hasProperty('skipDocker') }
inputDir = file(".")
dockerFile = file("src/main/docker/Dockerfile.jvm")
images.add("docker.benkard.de/mulk/mulkcms2:${projectVersion}")
}
buildDocker.dependsOn quarkusBuild
assemble.dependsOn buildDocker
task pushDocker(type: DockerPushImage) {
images.add("docker.benkard.de/mulk/mulkcms2:${projectVersion}")
}
pushDocker.dependsOn buildDocker
|