/* * This file was generated by the Gradle 'init' task. */ plugins { id 'java' id 'maven-publish' } repositories { mavenLocal() maven { url = uri('https://repo.maven.apache.org/maven2/') } } dependencies { implementation 'org.springframework.boot:spring-boot-starter-web:2.5.4' implementation 'org.projectlombok:lombok:1.18.20' implementation 'com.github.binarywang:wx-java-mp-spring-boot-starter:4.1.0' implementation 'io.github.biezhi:oh-my-email:0.0.4' testImplementation 'org.springframework.boot:spring-boot-starter-test:2.5.4' } group = 'cn.xuthus83' version = '0.0.1' description = 'wx_post' java.sourceCompatibility = JavaVersion.VERSION_1_8 publishing { publications { maven(MavenPublication) { from(components.java) } } } tasks.withType(JavaCompile) { options.encoding = 'UTF-8' }