|
@@ -1,138 +0,0 @@
|
|
|
-/*
|
|
|
- * ********************************************************************************************************************
|
|
|
- *
|
|
|
- * iFHS7.
|
|
|
- * ;BBMBMBMc rZMBMBR BMB
|
|
|
- * MBEr:;PBM, 7MBMMEOBB: BBB RBW
|
|
|
- * XK: BO SB. :SZ MBM. c;; ir BBM :FFr :SSF: ;xBMB:r iuGXv. i:. iF2;
|
|
|
- * DBBM0r. :D S7 ;XMBMB GMBMu. MBM: BMB MBMBBBMBMS WMBMBMBBK MBMBMBM BMBRBMBW .MBMBMBMBB
|
|
|
- * :JMRMMD .. , 1MMRM1; ;MBMBBR: MBM ;MB: BMB: MBM. RMBr sBMH BM0 UMB, BMB. KMBv
|
|
|
- * ;. XOW B1; :uM: 1RE, i .2BMBs rMB. MBO MBO JMB; MBB MBM BBS 7MBMBOBM: MBW :BMc
|
|
|
- * OBRJ.SEE MRDOWOR, 3DE:7OBM . ;BMB RMR7BM BMB MBB. BMB ,BMR .BBZ MMB rMB, BMM rMB7
|
|
|
- * :FBRO0D0 RKXSXPR. JOKOOMPi BMBSSWBMB; BMBB: MBMB0ZMBMS .BMBOXRBMB MBMDE RBM2;SMBM; MBB xBM2
|
|
|
- * iZGE O0SHSPO. uGZ7. sBMBMBDL :BMO OZu:BMBK, rRBMB0; ,EBMB xBMBr:ER. RDU :OO;
|
|
|
- * ,BZ, 1D0 RPSFHXR. xWZ .SMr . .BBB
|
|
|
- * :0BMRDG RESSSKR. 2WOMBW; BMBMR
|
|
|
- * i0BM: SWKHKGO MBDv
|
|
|
- * .UB OOGDM. MK, Copyright (c) 2015-2019. 斯伯坦机器人
|
|
|
- * , XMW ..
|
|
|
- * r All rights reserved.
|
|
|
- *
|
|
|
- * ********************************************************************************************************************
|
|
|
- */
|
|
|
-
|
|
|
-group rootProject.group
|
|
|
-version rootProject.version
|
|
|
-
|
|
|
-apply plugin: 'kotlin'
|
|
|
-apply plugin: 'org.jetbrains.dokka'
|
|
|
-apply plugin: 'maven'
|
|
|
-
|
|
|
-sourceCompatibility = JVM_TARGET
|
|
|
-
|
|
|
-compileKotlin {
|
|
|
- kotlinOptions.jvmTarget = JVM_TARGET
|
|
|
-}
|
|
|
-compileTestKotlin {
|
|
|
- kotlinOptions.jvmTarget = JVM_TARGET
|
|
|
-}
|
|
|
-
|
|
|
-dependencies {
|
|
|
- ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
- // kotlin 依赖
|
|
|
- compile group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jdk8', version: KOTLIN_VERSION
|
|
|
- compile group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: KOTLIN_VERSION
|
|
|
-
|
|
|
- ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
- // 校验器
|
|
|
- // https://mvnrepository.com/artifact/org.hibernate.validator/hibernate-validator
|
|
|
- compile group: 'org.hibernate.validator', name: 'hibernate-validator', version: VALIDATOR_VERSION
|
|
|
-
|
|
|
- ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
- // spring boot 依赖
|
|
|
- compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: SPRING_BOOT_VERSION
|
|
|
- compile group: 'org.springframework.boot', name: 'spring-boot-starter-logging', version: SPRING_BOOT_VERSION
|
|
|
- compile group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: SPRING_BOOT_VERSION
|
|
|
-
|
|
|
- ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
- // RESTful API 文档生成工具
|
|
|
- // https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui
|
|
|
- compile group: 'io.springfox', name: 'springfox-swagger-ui', version: SWAGGER_VERSION
|
|
|
- compile group: 'io.springfox', name: 'springfox-swagger2', version: SWAGGER_VERSION
|
|
|
-
|
|
|
- ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
- // 权限认证
|
|
|
- // https://mvnrepository.com/artifact/org.apache.shiro/shiro-spring-boot-web-starter
|
|
|
- compile group: 'org.apache.shiro', name: 'shiro-spring-boot-web-starter', version: SHIRO_VERSION
|
|
|
-
|
|
|
- ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
- // Sybotan 依赖
|
|
|
- compile group: 'com.sybotan', name: 'sybotan-kotlin-base', version: SYBOTAN_KOTLIN_VERSION
|
|
|
- compile group: 'com.sybotan', name: 'sybotan-kotlin-database', version: SYBOTAN_KOTLIN_VERSION
|
|
|
- compile project(':sybotan-service-models')
|
|
|
- compile project(':sybotan-service-base')
|
|
|
-}
|
|
|
-
|
|
|
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
-// 文档生成
|
|
|
-dokka {
|
|
|
- jdkVersion = JDK_VERSION
|
|
|
- outputFormat = 'javadoc'
|
|
|
- outputDirectory = '$buildDir/javadoc'
|
|
|
- //sourceDirs = files('src/main/kotlin')
|
|
|
-}
|
|
|
-
|
|
|
-// 上成上传的文档jar包
|
|
|
-task javadocJar(type: Jar, dependsOn: dokka) {
|
|
|
- classifier = 'javadoc'
|
|
|
- from dokka.outputDirectory
|
|
|
-}
|
|
|
-
|
|
|
-// 上成上传的文档jar包
|
|
|
-task sourcesJar(type: Jar) {
|
|
|
- classifier = 'sources'
|
|
|
- from sourceSets.main.allSource
|
|
|
-}
|
|
|
-
|
|
|
-////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
-// maven 仓库管理
|
|
|
-
|
|
|
-// 设置上传的包,默认上传aar与pom
|
|
|
-artifacts {
|
|
|
- //archives javadocJar
|
|
|
- //archives sourcesJar
|
|
|
-}
|
|
|
-
|
|
|
-uploadArchives {
|
|
|
- repositories {
|
|
|
- mavenDeployer {
|
|
|
- pom.groupId = project.group
|
|
|
- pom.version = project.version
|
|
|
- pom.artifactId = project.name
|
|
|
- pom.project {
|
|
|
- name project.name
|
|
|
- packaging 'jar'
|
|
|
- url SYBOTAN_URL
|
|
|
- description '斯伯坦机器人世界 网站项目核心支持库。'
|
|
|
- licenses {
|
|
|
- license {
|
|
|
- name LICENSE_NAME
|
|
|
- url LICENSE_URL
|
|
|
- }
|
|
|
- }
|
|
|
- developers {
|
|
|
- developer {
|
|
|
- id DEVELOPER_ID
|
|
|
- name DEVELOPER_NAME
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- snapshotRepository(url: MAVEN_REPO_SNAPSHOT_URL) {
|
|
|
- authentication(userName: NEXUS_USERNAME, password: NEXUS_PASSWORD)
|
|
|
- }
|
|
|
- repository(url: MAVEN_REPO_RELEASE_URL) {
|
|
|
- authentication(userName: NEXUS_USERNAME, password: NEXUS_PASSWORD)
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-}
|