Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2021
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. plugins {
  2. id 'java'
  3. id 'io.quarkus'
  4. }
  5.  
  6. repositories {
  7. google()
  8. mavenLocal()
  9. mavenCentral()
  10. }
  11.  
  12. dependencies {
  13. implementation enforcedPlatform("${quarkusPlatformGroupId}:${quarkusPlatformArtifactId}:${quarkusPlatformVersion}")
  14. implementation 'io.quarkus:quarkus-amazon-lambda'
  15. implementation 'io.quarkus:quarkus-rest-client-jackson'
  16. implementation 'io.quarkus:quarkus-rest-client'
  17. implementation 'io.quarkus:quarkus-arc'
  18.  
  19. testImplementation 'io.quarkus:quarkus-junit5'
  20. testImplementation 'io.quarkus:quarkus-test-amazon-lambda'
  21. }
  22.  
  23. group 'com.ahmarx'
  24. version '0.0.1'
  25.  
  26. java {
  27. sourceCompatibility = JavaVersion.VERSION_11
  28. targetCompatibility = JavaVersion.VERSION_11
  29. }
  30.  
  31. compileJava {
  32. options.encoding = 'UTF-8'
  33. options.compilerArgs << '-parameters'
  34. }
  35.  
  36. compileTestJava {
  37. options.encoding = 'UTF-8'
  38. }
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement