sk_server/common/build.gradle

27 lines
436 B
Groovy
Raw Normal View History

2024-07-11 16:35:09 +08:00
plugins {
id 'java'
}
group 'com.ljsd'
version '1.0.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12'
compile("org.springframework.boot:spring-boot-starter-data-mongodb:1.5.9.RELEASE")
}
jar {
baseName = 'common'
version = '1.0.0'
}
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'