| 123456789101112131415161718192021222324252627 |
- 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'
|