build.gradle 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * This file was generated by the Gradle 'init' task.
  3. */
  4. plugins {
  5. id 'java'
  6. id 'maven-publish'
  7. }
  8. repositories {
  9. mavenLocal()
  10. maven {
  11. url = uri('http://repo.maven.apache.org/maven2')
  12. }
  13. }
  14. dependencies {
  15. implementation 'org.springframework.boot:spring-boot-starter:2.3.0.RELEASE'
  16. implementation 'org.projectlombok:lombok:1.18.12'
  17. implementation 'org.springframework.boot:spring-boot-starter-jdbc:2.3.0.RELEASE'
  18. implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:1.2.0'
  19. implementation 'com.alibaba:druid:1.1.5'
  20. implementation 'com.aliyun.phoenix:ali-phoenix-queryserver-client:5.2.1-HBase-2.x'
  21. implementation 'com.google.code.gson:gson:2.8.5'
  22. implementation 'com.aliyun.hbase:alihbase-client:2.0.8'
  23. implementation 'com.github.pagehelper:pagehelper:5.1.11'
  24. implementation 'com.github.pagehelper:pagehelper-spring-boot-starter:1.2.13'
  25. implementation 'com.google.protobuf:protobuf-java:3.3.0'
  26. testImplementation 'org.springframework.boot:spring-boot-starter-test:2.3.0.RELEASE'
  27. }
  28. group = 'com.winhc'
  29. version = '0.0.1-SNAPSHOT'
  30. description = 'phoenix-example'
  31. sourceCompatibility = '1.8'
  32. publishing {
  33. publications {
  34. maven(MavenPublication) {
  35. from(components.java)
  36. }
  37. }
  38. }
  39. tasks.withType(JavaCompile) {
  40. options.encoding = 'UTF-8'
  41. }