build.gradle 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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.testng/testng
  43. testCompile group: 'org.testng', name: 'testng', version: TESTNG_VERSION
  44. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  45. // http请求
  46. // https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp
  47. compile group: 'com.squareup.okhttp3', name: 'okhttp', version: OKHTTP_VERSION
  48. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  49. // JSON解析
  50. // https://mvnrepository.com/artifact/com.alibaba/fastjson
  51. compile group: 'com.alibaba', name: 'fastjson', version: FASTJSON_VERSION
  52. }
  53. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  54. // 文档生成
  55. dokka {
  56. jdkVersion = JDK_VERSION
  57. outputFormat = 'javadoc'
  58. outputDirectory = "$buildDir/javadoc"
  59. //sourceDirs = files('src/main/kotlin')
  60. }
  61. // 上成上传的文档jar包
  62. task javadocJar(type: Jar, dependsOn: dokka) {
  63. classifier = 'javadoc'
  64. from dokka.outputDirectory
  65. }
  66. // 上成上传的文档jar包
  67. task sourcesJar(type: Jar) {
  68. classifier = 'sources'
  69. from sourceSets.main.allSource
  70. }
  71. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  72. // maven 仓库管理
  73. // 设置上传的包,默认上传aar与pom
  74. artifacts {
  75. // archives javadocJar
  76. // archives sourcesJar
  77. }
  78. uploadArchives {
  79. repositories {
  80. mavenDeployer {
  81. pom.groupId = project.group
  82. pom.version = project.version
  83. pom.artifactId = project.name
  84. pom.project {
  85. name project.name
  86. packaging 'jar'
  87. url SAGA_URL
  88. description '斯伯坦机器人 Kotlin 基础支持库。'
  89. licenses {
  90. license {
  91. name LICENSE_NAME
  92. url LICENSE_URL
  93. }
  94. }
  95. developers {
  96. developer {
  97. id DEVELOPER_ID
  98. name DEVELOPER_NAME
  99. }
  100. }
  101. }
  102. snapshotRepository(url: MAVEN_REPO_SNAPSHOT_URL) {
  103. authentication(userName: NEXUS_USERNAME, password: NEXUS_PASSWORD)
  104. }
  105. repository(url: MAVEN_REPO_RELEASE_URL) {
  106. authentication(userName: NEXUS_USERNAME, password: NEXUS_PASSWORD)
  107. }
  108. }
  109. }
  110. }
  111. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  112. // 自动化测试
  113. test {
  114. useTestNG()
  115. }