2019-10-11 02:28:37 +00:00
|
|
|
|
apply plugin: 'java-library'
|
2016-08-13 06:11:29 +00:00
|
|
|
|
|
2019-10-11 02:28:37 +00:00
|
|
|
|
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
|
2019-10-26 17:21:05 +00:00
|
|
|
|
sourceCompatibility = targetCompatibility = appJavaCompatibility
|
2016-08-13 06:11:29 +00:00
|
|
|
|
|
|
|
|
|
dependencies {
|
2019-08-01 19:35:27 +00:00
|
|
|
|
api project(':SPD-classes')
|
2019-11-22 20:05:47 +00:00
|
|
|
|
implementation project(':services')
|
2023-10-06 16:05:22 +00:00
|
|
|
|
|
|
|
|
|
// 添加 Lunar-Java 依赖 接入农历计算
|
|
|
|
|
|
|
|
|
|
//由于作者的版本号问题,136才是最新版
|
|
|
|
|
|
|
|
|
|
//noinspection GradleDependency
|
|
|
|
|
implementation 'cn.6tail:lunar:1.3.6'
|
2023-07-22 19:11:00 +00:00
|
|
|
|
}
|
|
|
|
|
|