build.gradle 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /*
  2. * ********************************************************************************************************************
  3. *
  4. * iFHS7.
  5. * ;BBMBMBMc rZMBMBR BMB
  6. * MBEr:;PBM, 7MBMMEOBB: BBB RBW
  7. * XK: BO SB. :SZ MBM. c;; ir BBM :FFr :SSF: ;xBMB:r iuGXv. i:. iF2;
  8. * DBBM0r. :D S7 ;XMBMB GMBMu. MBM: BMB MBMBBBMBMS WMBMBMBBK MBMBMBM BMBRBMBW .MBMBMBMBB
  9. * :JMRMMD .. , 1MMRM1; ;MBMBBR: MBM ;MB: BMB: MBM. RMBr sBMH BM0 UMB, BMB. KMBv
  10. * ;. XOW B1; :uM: 1RE, i .2BMBs rMB. MBO MBO JMB; MBB MBM BBS 7MBMBOBM: MBW :BMc
  11. * OBRJ.SEE MRDOWOR, 3DE:7OBM . ;BMB RMR7BM BMB MBB. BMB ,BMR .BBZ MMB rMB, BMM rMB7
  12. * :FBRO0D0 RKXSXPR. JOKOOMPi BMBSSWBMB; BMBB: MBMB0ZMBMS .BMBOXRBMB MBMDE RBM2;SMBM; MBB xBM2
  13. * iZGE O0SHSPO. uGZ7. sBMBMBDL :BMO OZu:BMBK, rRBMB0; ,EBMB xBMBr:ER. RDU :OO;
  14. * ,BZ, 1D0 RPSFHXR. xWZ .SMr . .BBB
  15. * :0BMRDG RESSSKR. 2WOMBW; BMBMR
  16. * i0BM: SWKHKGO MBDv
  17. * .UB OOGDM. MK, Copyright (c) 2015-2019. 斯伯坦机器人
  18. * , XMW ..
  19. * r All rights reserved.
  20. *
  21. * ********************************************************************************************************************
  22. */
  23. group rootProject.group
  24. version rootProject.version
  25. apply plugin: 'kotlin'
  26. apply plugin: 'org.jetbrains.dokka'
  27. apply plugin: 'maven'
  28. sourceCompatibility = JVM_TARGET
  29. compileKotlin {
  30. kotlinOptions.jvmTarget = JVM_TARGET
  31. }
  32. compileTestKotlin {
  33. kotlinOptions.jvmTarget = JVM_TARGET
  34. }
  35. dependencies {
  36. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  37. // kotlin 依赖
  38. compile group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jdk8', version: KOTLIN_VERSION
  39. compile group: 'org.jetbrains.kotlin', name: 'kotlin-reflect', version: KOTLIN_VERSION
  40. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  41. // 校验器
  42. // https://mvnrepository.com/artifact/org.hibernate.validator/hibernate-validator
  43. compile group: 'org.hibernate.validator', name: 'hibernate-validator', version: VALIDATOR_VERSION
  44. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  45. // spring boot 依赖
  46. compile group: 'org.springframework.boot', name: 'spring-boot-starter-web', version: SPRING_BOOT_VERSION
  47. compile group: 'org.springframework.boot', name: 'spring-boot-starter-logging', version: SPRING_BOOT_VERSION
  48. compile group: 'org.springframework.boot', name: 'spring-boot-starter-test', version: SPRING_BOOT_VERSION
  49. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  50. // RESTful API 文档生成工具
  51. // https://mvnrepository.com/artifact/io.springfox/springfox-swagger-ui
  52. compile group: 'io.springfox', name: 'springfox-swagger-ui', version: SWAGGER_VERSION
  53. compile group: 'io.springfox', name: 'springfox-swagger2', version: SWAGGER_VERSION
  54. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  55. // 权限认证
  56. // https://mvnrepository.com/artifact/org.apache.shiro/shiro-spring-boot-web-starter
  57. compile group: 'org.apache.shiro', name: 'shiro-spring-boot-web-starter', version: SHIRO_VERSION
  58. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  59. // Sybotan 依赖
  60. compile group: 'com.sybotan', name: 'sybotan-kotlin-base', version: SYBOTAN_KOTLIN_VERSION
  61. compile group: 'com.sybotan', name: 'sybotan-kotlin-database', version: SYBOTAN_KOTLIN_VERSION
  62. compile project(':sybotan-service-models')
  63. compile project(':sybotan-service-base')
  64. }
  65. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  66. // 文档生成
  67. dokka {
  68. jdkVersion = JDK_VERSION
  69. outputFormat = 'javadoc'
  70. outputDirectory = '$buildDir/javadoc'
  71. //sourceDirs = files('src/main/kotlin')
  72. }
  73. // 上成上传的文档jar包
  74. task javadocJar(type: Jar, dependsOn: dokka) {
  75. classifier = 'javadoc'
  76. from dokka.outputDirectory
  77. }
  78. // 上成上传的文档jar包
  79. task sourcesJar(type: Jar) {
  80. classifier = 'sources'
  81. from sourceSets.main.allSource
  82. }
  83. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  84. // maven 仓库管理
  85. // 设置上传的包,默认上传aar与pom
  86. artifacts {
  87. //archives javadocJar
  88. //archives sourcesJar
  89. }
  90. uploadArchives {
  91. repositories {
  92. mavenDeployer {
  93. pom.groupId = project.group
  94. pom.version = project.version
  95. pom.artifactId = project.name
  96. pom.project {
  97. name project.name
  98. packaging 'jar'
  99. url SYBOTAN_URL
  100. description '斯伯坦机器人世界 网站项目核心支持库。'
  101. licenses {
  102. license {
  103. name LICENSE_NAME
  104. url LICENSE_URL
  105. }
  106. }
  107. developers {
  108. developer {
  109. id DEVELOPER_ID
  110. name DEVELOPER_NAME
  111. }
  112. }
  113. }
  114. snapshotRepository(url: MAVEN_REPO_SNAPSHOT_URL) {
  115. authentication(userName: NEXUS_USERNAME, password: NEXUS_PASSWORD)
  116. }
  117. repository(url: MAVEN_REPO_RELEASE_URL) {
  118. authentication(userName: NEXUS_USERNAME, password: NEXUS_PASSWORD)
  119. }
  120. }
  121. }
  122. }