| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- apply plugin: "kotlin"
- group 'com.persagy.server'
- version '2.0.0'
- sourceCompatibility = JVM_TARGET
- compileKotlin {
- kotlinOptions.jvmTarget = JVM_TARGET
- }
- compileTestKotlin {
- kotlinOptions.jvmTarget = JVM_TARGET
- }
- sourceCompatibility = 1.8
- repositories {
- mavenCentral()
- }
- dependencies {
- // implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
- // testCompile group: 'junit', name: 'junit', version: '4.12'
- // kotlin 依赖
- compile group: "org.jetbrains.kotlin", name: "kotlin-stdlib-jdk8", version: KOTLIN_VERSION
- compile group: "org.jetbrains.kotlin", name: "kotlin-reflect", version: KOTLIN_VERSION
- //消息
- compile group: "org.springframework.boot", name: "spring-boot-starter-activemq", version: SPRING_BOOT_VERSION
- ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
- // RESTful API 文档生成工具
- // https://mvnrepository.com/artifact/org.springdoc/springdoc-openapi-ui
- compile group: 'org.springdoc', name: 'springdoc-openapi-ui', version: SPRING_DOC_VERSION
- // https://mvnrepository.com/artifact/org.springdoc/springdoc-openapi-common
- compile group: "org.springdoc", name: "springdoc-openapi-common", version: SPRING_DOC_VERSION
- // compile group: "cn.sagacloud", name: "saga-kotlin-base", version: SAGA_KOTLIN_VERSION
- // compile group: "cn.sagacloud", name: "saga-kotlin-database", version: SAGA_KOTLIN_VERSION
- // compile group: "cn.sagacloud", name: "saga-kotlin-mybatis", version: SAGA_KOTLIN_VERSION
- // compile group: "cn.sagacloud", name: "saga-kotlin-postgresql", version: SAGA_KOTLIN_VERSION
- // compile group: "cn.sagacloud", name: "saga-service-base", version: SAGA_SERVICE_VERSION
- // compile group: "cn.sagacloud", name: "saga-service-mybatis", version: SAGA_SERVICE_VERSION
- compile group: "com.persagy", name: "persagy-kotlin-base", version: PERSAGY_KOTLIN_VERSION
- compile group: "com.persagy", name: "persagy-kotlin-database", version: PERSAGY_KOTLIN_VERSION
- compile group: "com.persagy", name: "persagy-kotlin-mybatis", version: PERSAGY_KOTLIN_VERSION
- compile group: "com.persagy", name: "persagy-kotlin-postgresql", version: PERSAGY_KOTLIN_VERSION
- compile group: "com.persagy", name: "persagy-service-base", version: PERSAGY_SERVICE_VERSION
- compile group: "com.persagy", name: "persagy-service-mybatis", version: PERSAGY_SERVICE_VERSION
- //Gson
- compile 'com.google.code.gson:gson:2.8.0'
- }
|