build.gradle 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. /**
  2. * Copyright © 2016-2023 The Thingsboard Authors
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. import org.apache.tools.ant.filters.ReplaceTokens
  17. plugins {
  18. id "nebula.ospackage" version "8.6.3"
  19. }
  20. buildDir = projectBuildDir
  21. version = projectVersion
  22. distsDirName = "./"
  23. // OS Package plugin configuration
  24. ospackage {
  25. packageName = pkgName
  26. version = "${project.version}"
  27. release = 1
  28. os = LINUX
  29. type = BINARY
  30. into pkgInstallFolder
  31. user pkgUser
  32. permissionGroup pkgUser
  33. // Copy the actual .jar file
  34. from(mainJar) {
  35. // Strip the version from the jar filename
  36. rename { String fileName ->
  37. "${pkgName}.jar"
  38. }
  39. fileMode 0500
  40. into "bin"
  41. }
  42. if("${pkgCopyInstallScripts}".equalsIgnoreCase("true")) {
  43. // Copy the install files
  44. from("${buildDir}/bin/install/install.sh") {
  45. fileMode 0775
  46. into "bin/install"
  47. }
  48. from("${buildDir}/bin/install/upgrade.sh") {
  49. fileMode 0775
  50. into "bin/install"
  51. }
  52. from("${buildDir}/bin/install/logback.xml") {
  53. into "bin/install"
  54. }
  55. }
  56. // Copy the config files
  57. from("${buildDir}/conf") {
  58. exclude "${pkgName}.conf"
  59. fileType CONFIG | NOREPLACE
  60. fileMode 0754
  61. into "conf"
  62. }
  63. // Copy the data files
  64. from("${buildDir}/data") {
  65. fileType CONFIG | NOREPLACE
  66. fileMode 0754
  67. into "data"
  68. }
  69. // Copy the extensions files
  70. from("${buildDir}/extensions") {
  71. into "extensions"
  72. }
  73. }
  74. // Configure our RPM build task
  75. buildRpm {
  76. arch = NOARCH
  77. archiveVersion = projectVersion.replace('-', '')
  78. archiveFileName = "${pkgName}.rpm"
  79. requires("java-11")
  80. from("${buildDir}/conf") {
  81. include "${pkgName}.conf"
  82. filter(ReplaceTokens, tokens: ['pkg.platform': 'rpm'])
  83. fileType CONFIG | NOREPLACE
  84. fileMode 0754
  85. into "${pkgInstallFolder}/conf"
  86. }
  87. preInstall file("${buildDir}/control/rpm/preinst")
  88. postInstall file("${buildDir}/control/rpm/postinst")
  89. preUninstall file("${buildDir}/control/rpm/prerm")
  90. postUninstall file("${buildDir}/control/rpm/postrm")
  91. user pkgUser
  92. permissionGroup pkgUser
  93. // Copy the system unit files
  94. from("${buildDir}/control/template.service") {
  95. addParentDirs = false
  96. fileMode 0644
  97. into "/usr/lib/systemd/system"
  98. rename { String filename ->
  99. "${pkgName}.service"
  100. }
  101. }
  102. link("${pkgInstallFolder}/bin/${pkgName}.yml", "${pkgInstallFolder}/conf/${pkgName}.yml")
  103. link("/etc/${pkgName}/conf", "${pkgInstallFolder}/conf")
  104. }
  105. // Same as the buildRpm task
  106. buildDeb {
  107. arch = "all"
  108. archiveFileName = "${pkgName}.deb"
  109. requires("openjdk-11-jre").or("java11-runtime").or("oracle-java11-installer").or("openjdk-11-jre-headless")
  110. from("${buildDir}/conf") {
  111. include "${pkgName}.conf"
  112. filter(ReplaceTokens, tokens: ['pkg.platform': 'deb'])
  113. fileType CONFIG | NOREPLACE
  114. fileMode 0754
  115. into "${pkgInstallFolder}/conf"
  116. }
  117. configurationFile("${pkgInstallFolder}/conf/${pkgName}.conf")
  118. configurationFile("${pkgInstallFolder}/conf/${pkgName}.yml")
  119. configurationFile("${pkgInstallFolder}/conf/logback.xml")
  120. configurationFile("${pkgInstallFolder}/conf/actor-system.conf")
  121. preInstall file("${buildDir}/control/deb/preinst")
  122. postInstall file("${buildDir}/control/deb/postinst")
  123. preUninstall file("${buildDir}/control/deb/prerm")
  124. postUninstall file("${buildDir}/control/deb/postrm")
  125. user pkgUser
  126. permissionGroup pkgUser
  127. // Copy the system unit files
  128. from("${buildDir}/control/template.service") {
  129. addParentDirs = false
  130. fileMode 0644
  131. into "/lib/systemd/system"
  132. rename { String filename ->
  133. "${pkgName}.service"
  134. }
  135. }
  136. link("${pkgInstallFolder}/bin/${pkgName}.yml", "${pkgInstallFolder}/conf/${pkgName}.yml")
  137. link("/etc/${pkgName}/conf", "${pkgInstallFolder}/conf")
  138. }