/* * This file was generated by the Gradle 'init' task. */ plugins { id 'java' id 'maven-publish' } repositories { mavenLocal() maven { url = uri('http://repo.maven.apache.org/maven2') } } dependencies { implementation 'org.springframework.boot:spring-boot-starter:2.3.0.RELEASE' implementation 'org.projectlombok:lombok:1.18.12' implementation 'org.springframework.boot:spring-boot-starter-jdbc:2.3.0.RELEASE' implementation 'org.mybatis.spring.boot:mybatis-spring-boot-starter:1.2.0' implementation 'com.alibaba:druid:1.1.5' implementation 'com.aliyun.phoenix:ali-phoenix-queryserver-client:5.2.1-HBase-2.x' implementation 'com.google.code.gson:gson:2.8.5' implementation 'com.aliyun.hbase:alihbase-client:2.0.8' implementation 'com.github.pagehelper:pagehelper:5.1.11' implementation 'com.github.pagehelper:pagehelper-spring-boot-starter:1.2.13' implementation 'com.google.protobuf:protobuf-java:3.3.0' testImplementation 'org.springframework.boot:spring-boot-starter-test:2.3.0.RELEASE' } group = 'com.winhc' version = '0.0.1-SNAPSHOT' description = 'phoenix-example' sourceCompatibility = '1.8' publishing { publications { maven(MavenPublication) { from(components.java) } } } tasks.withType(JavaCompile) { options.encoding = 'UTF-8' }