Magic_Ling_Pixel_Dungeon/core/build.gradle

18 lines
436 B
Groovy
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

apply plugin: 'java-library'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
sourceCompatibility = targetCompatibility = appJavaCompatibility
dependencies {
api project(':SPD-classes')
implementation project(':services')
// 添加 Lunar-Java 依赖 接入农历计算
//由于作者的版本号问题136才是最新版
//noinspection GradleDependency
implementation 'cn.6tail:lunar:1.3.6'
}