Matthias Andreas Benkard | 4c5847b | 2020-01-12 15:42:02 +0100 | [diff] [blame] | 1 | plugins { |
| 2 | id 'scala' |
| 3 | id 'java' |
| 4 | id 'io.quarkus' |
| 5 | id "com.diffplug.gradle.spotless" version "3.27.0" |
| 6 | } |
| 7 | |
| 8 | repositories { |
| 9 | mavenLocal() |
| 10 | mavenCentral() |
| 11 | } |
| 12 | |
| 13 | dependencies { |
| 14 | implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}") |
| 15 | |
| 16 | implementation 'io.quarkus:quarkus-agroal' |
| 17 | //implementation 'io.quarkus:quarkus-elytron-security' |
| 18 | //implementation 'io.quarkus:quarkus-elytron-security-jdbc' |
| 19 | //implementation 'io.quarkus:quarkus-elytron-security-oauth2' |
| 20 | implementation 'io.quarkus:quarkus-flyway' |
| 21 | implementation 'io.quarkus:quarkus-hibernate-orm-panache' |
| 22 | implementation 'io.quarkus:quarkus-hibernate-validator' |
| 23 | implementation 'io.quarkus:quarkus-jdbc-postgresql' |
| 24 | implementation 'io.quarkus:quarkus-jsonb' |
| 25 | implementation 'io.quarkus:quarkus-jsonp' |
| 26 | //implementation 'io.quarkus:quarkus-keycloak-authorization' |
| 27 | implementation 'io.quarkus:quarkus-kubernetes' |
| 28 | implementation 'io.quarkus:quarkus-mailer' |
| 29 | //implementation 'io.quarkus:quarkus-oidc' |
| 30 | //implementation 'io.quarkus:quarkus-quartz' |
| 31 | implementation 'io.quarkus:quarkus-qute' |
| 32 | implementation 'io.quarkus:quarkus-resteasy' |
| 33 | implementation 'io.quarkus:quarkus-resteasy-jsonb' |
| 34 | implementation 'io.quarkus:quarkus-resteasy-qute' |
| 35 | implementation 'io.quarkus:quarkus-scala' |
| 36 | implementation 'io.quarkus:quarkus-scheduler' |
| 37 | //implementation 'io.quarkus:quarkus-smallrye-fault-tolerance' |
| 38 | //implementation 'io.quarkus:quarkus-smallrye-health' |
| 39 | //implementation 'io.quarkus:quarkus-smallrye-metrics' |
| 40 | //implementation 'io.quarkus:quarkus-smallrye-openapi' |
| 41 | |
| 42 | //implementation 'jakarta.transaction:jakarta.transaction-api' |
| 43 | //implementation 'org.jboss.spec.javax.xml.bind:jboss-jaxb-api_2.3_spec' |
| 44 | //implementation 'jakarta.persistence:jakarta.persistence-api' |
| 45 | |
| 46 | implementation 'org.scala-lang:scala-library:2.13.1' |
| 47 | |
| 48 | implementation 'com.vladmihalcea:hibernate-types-52:2.9.0' |
| 49 | |
| 50 | testImplementation 'io.quarkus:quarkus-junit5' |
| 51 | testImplementation 'io.rest-assured:rest-assured' |
| 52 | } |
| 53 | |
| 54 | spotless { |
| 55 | scala { |
| 56 | scalafmt() |
| 57 | } |
Matthias Andreas Benkard | 4be112f | 2020-01-12 20:29:38 +0100 | [diff] [blame^] | 58 | |
| 59 | java { |
| 60 | googleJavaFormat() |
| 61 | removeUnusedImports() |
| 62 | } |
Matthias Andreas Benkard | 4c5847b | 2020-01-12 15:42:02 +0100 | [diff] [blame] | 63 | } |
| 64 | |
Matthias Andreas Benkard | 7a381e9 | 2020-01-12 16:46:54 +0100 | [diff] [blame] | 65 | sourceCompatibility = 13 |
| 66 | targetCompatibility = 13 |
| 67 | |
Matthias Andreas Benkard | 4c5847b | 2020-01-12 15:42:02 +0100 | [diff] [blame] | 68 | group 'eu.mulk' |
| 69 | version '0.1.0-SNAPSHOT' |