build.gradle 248 B

12345678910111213
  1. plugins {
  2. id 'java-library'
  3. }
  4. //解决中文乱码问题
  5. tasks.withType(JavaCompile).configureEach {
  6. options.encoding = 'utf-8'
  7. }
  8. java {
  9. sourceCompatibility = JavaVersion.VERSION_1_8
  10. targetCompatibility = JavaVersion.VERSION_1_8
  11. }