build.gradle 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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 SYBOTAN_CODE.toInteger()
  37. versionName SYBOTAN_ANDROID_VERSION
  38. testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
  39. }
  40. buildTypes {
  41. release {
  42. proguardFile 'proguard-rules.pro'
  43. }
  44. }
  45. // 解决lint语法检查错误(kotlin语法无法通过lint)
  46. lintOptions {
  47. abortOnError false
  48. }
  49. kotlinOptions {
  50. jvmTarget = JVM_TARGET
  51. }
  52. }
  53. dependencies {
  54. implementation fileTree(dir: 'libs', include: ['*.jar'])
  55. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  56. // kotlin 依赖
  57. // https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-stdlib-jdk8
  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. implementation group: 'com.android.support.constraint', name: 'constraint-layout', version: CONSTRAINT_VERSION
  65. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  66. // Sybotan依赖
  67. implementation group: 'com.sybotan', name: 'sybotan-kotlin-base', version: SYBOTAN_KOTLIN_VERSION
  68. implementation group: 'com.sybotan', name: 'sybotan-android-base', version: SYBOTAN_ANDROID_VERSION
  69. implementation group: 'com.sybotan', name: 'sybotan-android-graphy', version: SYBOTAN_ANDROID_VERSION
  70. }
  71. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  72. // 文档生成
  73. // 源码
  74. task sourcesJar(type: Jar) {
  75. group = 'jar'
  76. from "${android.sourceSets.main.java.srcDirs}"
  77. classifier = 'sources'
  78. }
  79. // 文档
  80. task dokkaJavadoc(type: org.jetbrains.dokka.gradle.DokkaTask) {
  81. jdkVersion = JDK_VERSION.toInteger()
  82. noStdlibLink = true
  83. outputFormat = 'javadoc'
  84. outputDirectory = "$buildDir/javadoc"
  85. // sourceDirs = files('src/main/java')
  86. }
  87. // 上成上传的文档jar包
  88. task javadocJar(type: Jar, dependsOn: dokkaJavadoc) {
  89. group = 'jar'
  90. classifier = 'javadoc'
  91. from "${dokka.outputDirectory}"
  92. }
  93. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  94. // maven 仓库管理
  95. // 设置上传的包,默认上传aar与pom
  96. artifacts {
  97. // 上传源码包
  98. // archives sourcesJar
  99. // 上传文档包
  100. // archives javadocJar
  101. }
  102. uploadArchives {
  103. repositories {
  104. mavenDeployer {
  105. pom.groupId = project.group
  106. pom.version = project.version
  107. pom.artifactId = project.name
  108. pom.project {
  109. name project.name
  110. packaging 'jar'
  111. url SYBOTAN_URL
  112. description '上格云cad引擎库。'
  113. licenses {
  114. license {
  115. name 'The Apache Software License, Version 2.0'
  116. url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
  117. }
  118. }
  119. developers {
  120. developer {
  121. id DEVELOPER_ID
  122. name DEVELOPER_NAME
  123. }
  124. }
  125. }
  126. snapshotRepository(url: MAVEN_REPO_SNAPSHOT_URL) {
  127. authentication(userName: NEXUS_USERNAME, password: NEXUS_PASSWORD)
  128. }
  129. repository(url: MAVEN_REPO_RELEASE_URL) {
  130. authentication(userName: NEXUS_USERNAME, password: NEXUS_PASSWORD)
  131. }
  132. }
  133. }
  134. }