build.gradle 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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: 'com.android.library'
  26. apply plugin: 'kotlin-android'
  27. apply plugin: 'kotlin-android-extensions'
  28. apply plugin: 'org.jetbrains.dokka-android'
  29. apply plugin: 'maven'
  30. android {
  31. compileSdkVersion ANDROID_SDK_VERSION.toInteger()
  32. buildToolsVersion ANDROID_BUILD_TOOLS_VERSION
  33. defaultConfig {
  34. minSdkVersion ANDROID_MIN_SDK_VERSION.toInteger()
  35. targetSdkVersion ANDROID_SDK_VERSION.toInteger()
  36. versionCode SAGA_CODE.toInteger()
  37. versionName SAGA_ANDROID_VERSION
  38. testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
  39. }
  40. buildTypes {
  41. release {
  42. // minifyEnabled false
  43. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  44. }
  45. }
  46. // 解决lint语法检查错误(kotlin语法无法通过lint)
  47. lintOptions {
  48. abortOnError false
  49. }
  50. kotlinOptions {
  51. jvmTarget = JVM_TARGET
  52. }
  53. }
  54. dependencies {
  55. implementation fileTree(dir: 'libs', include: ['*.jar'])
  56. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  57. // kotlin 依赖
  58. implementation group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jdk8', version: KOTLIN_VERSION
  59. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  60. // android支持
  61. implementation group: 'com.android.support', name: 'appcompat-v7', version: ANDROID_SUPPORT_VERSION
  62. implementation group: 'com.android.support', name: 'design', version: ANDROID_SUPPORT_VERSION
  63. implementation group: 'com.android.support', name: 'support-v4', version: ANDROID_SUPPORT_VERSION
  64. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  65. // anko依赖
  66. // https://mvnrepository.com/artifact/org.jetbrains.anko/anko-common
  67. implementation group: 'org.jetbrains.anko', name: 'anko-commons', version: ANKO_VERSION
  68. // https://mvnrepository.com/artifact/org.greenrobot/eventbus
  69. implementation group: 'org.greenrobot', name: 'eventbus', version: EVENTBUS_VERSION
  70. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  71. // Sybotan依赖
  72. implementation group: 'cn.sagacloud', name: 'saga-kotlin-base', version: SAGA_KOTLIN_VERSION
  73. implementation project(':sybotan-android-base')
  74. }
  75. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  76. // 文档生成
  77. // 源码
  78. task sourcesJar(type: Jar) {
  79. group = 'jar'
  80. from "${android.sourceSets.main.java.srcDirs}"
  81. classifier = 'sources'
  82. }
  83. // 文档
  84. task dokkaJavadoc(type: org.jetbrains.dokka.gradle.DokkaTask) {
  85. jdkVersion = JDK_VERSION.toInteger()
  86. noStdlibLink = true
  87. outputFormat = 'javadoc'
  88. outputDirectory = "$buildDir/javadoc"
  89. // sourceDirs = files('src/main/java')
  90. }
  91. // 上成上传的文档jar包
  92. task javadocJar(type: Jar, dependsOn: dokkaJavadoc) {
  93. group = 'jar'
  94. classifier = 'javadoc'
  95. from "${dokka.outputDirectory}"
  96. }
  97. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  98. // maven 仓库管理
  99. // 设置上传的包,默认上传aar与pom
  100. artifacts {
  101. // 上传源码包
  102. // archives sourcesJar
  103. // 上传文档包
  104. // archives javadocJar
  105. }
  106. uploadArchives {
  107. repositories {
  108. mavenDeployer {
  109. pom.groupId = project.group
  110. pom.version = project.version
  111. pom.artifactId = project.name
  112. pom.project {
  113. name project.name
  114. packaging 'jar'
  115. url SAGA_URL
  116. description '斯伯坦机器人世界 android Graphy框架库。'
  117. licenses {
  118. license {
  119. name 'The Apache Software License, Version 2.0'
  120. url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
  121. }
  122. }
  123. developers {
  124. developer {
  125. id DEVELOPER_ID
  126. name DEVELOPER_NAME
  127. }
  128. }
  129. }
  130. snapshotRepository(url: MAVEN_REPO_SNAPSHOT_URL) {
  131. authentication(userName: NEXUS_USERNAME, password: NEXUS_PASSWORD)
  132. }
  133. repository(url: MAVEN_REPO_RELEASE_URL) {
  134. authentication(userName: NEXUS_USERNAME, password: NEXUS_PASSWORD)
  135. }
  136. }
  137. }
  138. }