yoesoff

Untitled

Sep 6th, 2020
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 69.47 KB | None | 0 0
  1. Started by remote host 36.79.251.90
  2. Running as SYSTEM
  3. Building in workspace /var/lib/jenkins/workspace/Goota-BE-Contabox-Release
  4. The recommended git tool is: NONE
  5. using credential ce9aebe4-208e-4d07-9142-6a61b146e745
  6.  > git rev-parse --is-inside-work-tree # timeout=10
  7. Fetching changes from the remote Git repository
  8.  > git config remote.origin.url https://gitlab.com/zulvani/goota-be # timeout=10
  9. Fetching upstream changes from https://gitlab.com/zulvani/goota-be
  10.  > git --version # timeout=10
  11.  > git --version # 'git version 2.25.1'
  12. using GIT_ASKPASS to set credentials
  13.  > git fetch --tags --force --progress -- https://gitlab.com/zulvani/goota-be +refs/heads/*:refs/remotes/origin/* # timeout=10
  14.  > git rev-parse origin/contabox-release^{commit} # timeout=10
  15. Checking out Revision 36ee0430ebf0f81e7869baa33859c6b92285bc9f (origin/contabox-release)
  16.  > git config core.sparsecheckout # timeout=10
  17.  > git checkout -f 36ee0430ebf0f81e7869baa33859c6b92285bc9f # timeout=10
  18. Commit message: "penyesuaian upload-base-url"
  19.  > git rev-list --no-walk 36ee0430ebf0f81e7869baa33859c6b92285bc9f # timeout=10
  20. [Goota-BE-Contabox-Release] $ /bin/sh -xe /tmp/jenkins1470348816383806679.sh
  21. + echo Your path:
  22. Your path:
  23. + pwd
  24. /var/lib/jenkins/workspace/Goota-BE-Contabox-Release
  25. + ls
  26. api-client
  27. application.properties
  28. build.sh
  29. common.sh
  30. core
  31. droptable.sql
  32. envi
  33. integration-service
  34. member-service
  35. merchant-service
  36. open-api
  37. partner-service
  38. payment-service
  39. product-service
  40. promotion-service
  41. Readme.md
  42. reporting-service
  43. security-service
  44. service_template
  45. trade-service
  46. ummah-item
  47. ummah-item-rest
  48. + echo User:
  49. User:
  50. + echo jenkins
  51. jenkins
  52. + echo Properties:
  53. Properties:
  54. + cat ummah-item-rest/src/main/resources/application.properties
  55. goota.integration.pos.base-url=http://localhost:8080/api/v1
  56. goota.pos.security.partner.jwt.builder.key=g0t4-p4rtn3r
  57. goota.pos.integration.partner.juber.base-url=http://139.180.154.131:8091
  58. goota.pos.integration.partner.juber.username=jbfoodjbfadmin
  59. goota.pos.integration.partner.juber.password=46BEFD51C75C3
  60. goota.pos.integration.partner.juber.grand-type=password
  61.  
  62. goota.pos.payment.default.currency=IDR
  63. goota.pos.payment.default.method=CASH
  64.  
  65. goota.pos.product.picture.dir=/var/lib/tomcat9/webapps/products
  66. goota.pos.product.picture.base-url=https://api1.beanary.tech/products
  67. goota.pos.product.picture.upload.base-url=https://api1.beanary.tech/api/v1
  68.  
  69. logging.level.com.ummah=DEBUG
  70.  
  71. spring.jpa.hibernate.ddl-auto=update
  72.  
  73. http.port=8080
  74.  
  75. security.require-ssl=true
  76.  
  77. server.port=8443
  78. server.ssl.key-store-type=PKCS12
  79. server.ssl.key-store=classpath:keystore/keystore.p12
  80. server.ssl.key-store-password=123456
  81. server.ssl.key-alias=tomcat
  82.  
  83. spring.datasource.url=jdbc:postgresql://localhost:5432/ummah_item
  84. spring.datasource.username=postgres
  85. spring.datasource.password=A339f16ce4a127fc9fd90ac2aeecfb6f1A
  86. spring.datasource.driverClassName=org.postgresql.Driver
  87.  
  88. spring.jpa.database-platform=org.hibernate.dialect.PostgreSQLDialect
  89. spring.jpa.show-sql=false
  90. spring.jpa.properties.hibernate.format_sql=true
  91.  
  92. spring.main.allow-bean-definition-overriding=true
  93.  
  94. # timezone
  95. spring.jpa.properties.hibernate.jdbc.time_zone=UTC
  96.  
  97. logging.level.org.hibernate.type=info
  98. logging.level.org.hibernate.engine.jdbc.env.internal.LobCreatorBuilderImpl=ERROR
  99.  
  100.  
  101. # for fixing issue: java.lang.StackOverflowError: null
  102. # when there is LAZY load in entity which should be exposed to REST
  103. spring.jpa.open-in-view=false
  104.  
  105. logging.level.root=INFO
  106. logging.level.org.springframework.web=INFO
  107.  
  108. # redis
  109. spring.cache.enable=false
  110. spring.cache.type=redis
  111. spring.redis.host=localhost
  112. spring.redis.port=6379
  113.  
  114. # communication system
  115. ummah.app.sender.email.default=no-reply@goota.id
  116. ummah.app.sender.name.default=Goota
  117. ummah.app.sendgrid.api.key=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
  118. ummah.app.base.url=http://localhost:8000/#/
  119. ummah.app.name=Goota.id
  120. ummah.app.member.portal.url=http://localhost:8000/#/
  121.  
  122. # STG = STAGING
  123. # PRD = PRODUCTION
  124. # DEV = DEVELOPMENT
  125. # TST = TEST
  126. ummah.app.env=DEV
  127.  
  128. spring.jackson.date-format=yyyy-MM-dd HH:mm:ss
  129. spring.jackson.time-zone=Asia/Jakarta
  130. + echo ----------------------------------Building------------------------------------
  131. ----------------------------------Building------------------------------------
  132. + sudo ./build.sh
  133. [INFO] Scanning for projects...
  134. [WARNING]
  135. [WARNING] Some problems were encountered while building the effective model for com.goota.pos:core:jar:0.0.1-SNAPSHOT
  136. [WARNING] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.springframework.boot:spring-boot-starter-web:jar -> duplicate declaration of version (?) @ line 33, column 15
  137. [WARNING] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.springframework.boot:spring-boot-starter-data-jpa:jar -> duplicate declaration of version (?) @ line 50, column 15
  138. [WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.springframework.boot:spring-boot-maven-plugin @ line 125, column 12
  139. [WARNING]
  140. [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
  141. [WARNING]
  142. [WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
  143. [WARNING]
  144. [INFO]
  145. [INFO] -------------------------< com.goota.pos:core >-------------------------
  146. [INFO] Building goota core 0.0.1-SNAPSHOT
  147. [INFO] --------------------------------[ jar ]---------------------------------
  148. [WARNING] The artifact org.hibernate:hibernate-validator:jar:6.0.11.Final has been relocated to org.hibernate.validator:hibernate-validator:jar:6.0.11.Final
  149. [INFO]
  150. [INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ core ---
  151. [INFO] Deleting /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/core/target
  152. [INFO]
  153. [INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ core ---
  154. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  155. [INFO] Copying 1 resource
  156. [INFO] Copying 0 resource
  157. [INFO]
  158. [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ core ---
  159. [INFO] Changes detected - recompiling the module!
  160. [INFO] Compiling 141 source files to /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/core/target/classes
  161. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/core/src/main/java/com/goota/pos/core/model/dto/IngredientPurchasingDetailDto.java: Some input files use or override a deprecated API.
  162. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/core/src/main/java/com/goota/pos/core/model/dto/IngredientPurchasingDetailDto.java: Recompile with -Xlint:deprecation for details.
  163. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/core/src/main/java/com/goota/pos/core/model/entity/IngredientPurchasingHead.java: Some input files use unchecked or unsafe operations.
  164. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/core/src/main/java/com/goota/pos/core/model/entity/IngredientPurchasingHead.java: Recompile with -Xlint:unchecked for details.
  165. [INFO]
  166. [INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ core ---
  167. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  168. [INFO] Copying 1 resource
  169. [INFO]
  170. [INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ core ---
  171. [INFO] No sources to compile
  172. [INFO]
  173. [INFO] --- maven-surefire-plugin:2.22.2:test (default-test) @ core ---
  174. [INFO] Tests are skipped.
  175. [INFO]
  176. [INFO] --- maven-jar-plugin:3.1.2:jar (default-jar) @ core ---
  177. [INFO] Building jar: /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/core/target/core-0.0.1-SNAPSHOT.jar
  178. [INFO]
  179. [INFO] --- spring-boot-maven-plugin:2.1.9.RELEASE:repackage (repackage) @ core ---
  180. [INFO] Attaching repackaged archive /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/core/target/core-0.0.1-SNAPSHOT-exec.jar with classifier exec
  181. [INFO]
  182. [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ core ---
  183. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/core/target/core-0.0.1-SNAPSHOT.jar to /root/.m2/repository/com/goota/pos/core/0.0.1-SNAPSHOT/core-0.0.1-SNAPSHOT.jar
  184. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/core/pom.xml to /root/.m2/repository/com/goota/pos/core/0.0.1-SNAPSHOT/core-0.0.1-SNAPSHOT.pom
  185. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/core/target/core-0.0.1-SNAPSHOT-exec.jar to /root/.m2/repository/com/goota/pos/core/0.0.1-SNAPSHOT/core-0.0.1-SNAPSHOT-exec.jar
  186. [INFO] ------------------------------------------------------------------------
  187. [INFO] BUILD SUCCESS
  188. [INFO] ------------------------------------------------------------------------
  189. [INFO] Total time:  6.483 s
  190. [INFO] Finished at: 2020-09-06T12:22:25+07:00
  191. [INFO] ------------------------------------------------------------------------
  192. [INFO] Scanning for projects...
  193. [WARNING]
  194. [WARNING] Some problems were encountered while building the effective model for com.goota.pos:integration-service:jar:0.0.1-SNAPSHOT
  195. [WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.springframework.boot:spring-boot-maven-plugin @ line 73, column 12
  196. [WARNING]
  197. [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
  198. [WARNING]
  199. [WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
  200. [WARNING]
  201. [INFO]
  202. [INFO] -----------------< com.goota.pos:integration-service >------------------
  203. [INFO] Building goota integration service 0.0.1-SNAPSHOT
  204. [INFO] --------------------------------[ jar ]---------------------------------
  205. [INFO]
  206. [INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ integration-service ---
  207. [INFO] Deleting /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/integration-service/target
  208. [INFO]
  209. [INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ integration-service ---
  210. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  211. [INFO] Copying 1 resource
  212. [INFO]
  213. [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ integration-service ---
  214. [INFO] Changes detected - recompiling the module!
  215. [INFO] Compiling 43 source files to /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/integration-service/target/classes
  216. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/integration-service/src/main/java/com/goota/pos/integration/juber/service/JuberBaseService.java: Some input files use unchecked or unsafe operations.
  217. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/integration-service/src/main/java/com/goota/pos/integration/juber/service/JuberBaseService.java: Recompile with -Xlint:unchecked for details.
  218. [INFO]
  219. [INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ integration-service ---
  220. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  221. [INFO] Copying 1 resource
  222. [INFO]
  223. [INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ integration-service ---
  224. [INFO] No sources to compile
  225. [INFO]
  226. [INFO] --- maven-surefire-plugin:2.22.2:test (default-test) @ integration-service ---
  227. [INFO] Tests are skipped.
  228. [INFO]
  229. [INFO] --- maven-jar-plugin:3.1.2:jar (default-jar) @ integration-service ---
  230. [INFO] Building jar: /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/integration-service/target/integration-service-0.0.1-SNAPSHOT.jar
  231. [INFO]
  232. [INFO] --- spring-boot-maven-plugin:2.1.9.RELEASE:repackage (repackage) @ integration-service ---
  233. [INFO] Attaching repackaged archive /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/integration-service/target/integration-service-0.0.1-SNAPSHOT-exec.jar with classifier exec
  234. [INFO]
  235. [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ integration-service ---
  236. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/integration-service/target/integration-service-0.0.1-SNAPSHOT.jar to /root/.m2/repository/com/goota/pos/integration-service/0.0.1-SNAPSHOT/integration-service-0.0.1-SNAPSHOT.jar
  237. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/integration-service/pom.xml to /root/.m2/repository/com/goota/pos/integration-service/0.0.1-SNAPSHOT/integration-service-0.0.1-SNAPSHOT.pom
  238. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/integration-service/target/integration-service-0.0.1-SNAPSHOT-exec.jar to /root/.m2/repository/com/goota/pos/integration-service/0.0.1-SNAPSHOT/integration-service-0.0.1-SNAPSHOT-exec.jar
  239. [INFO] ------------------------------------------------------------------------
  240. [INFO] BUILD SUCCESS
  241. [INFO] ------------------------------------------------------------------------
  242. [INFO] Total time:  5.041 s
  243. [INFO] Finished at: 2020-09-06T12:22:31+07:00
  244. [INFO] ------------------------------------------------------------------------
  245. [INFO] Scanning for projects...
  246. [WARNING]
  247. [WARNING] Some problems were encountered while building the effective model for com.goota.pos:member-service:jar:0.0.1-SNAPSHOT
  248. [WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.springframework.boot:spring-boot-maven-plugin @ line 73, column 12
  249. [WARNING]
  250. [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
  251. [WARNING]
  252. [WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
  253. [WARNING]
  254. [INFO]
  255. [INFO] --------------------< com.goota.pos:member-service >--------------------
  256. [INFO] Building goota member service 0.0.1-SNAPSHOT
  257. [INFO] --------------------------------[ jar ]---------------------------------
  258. [INFO]
  259. [INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ member-service ---
  260. [INFO] Deleting /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/member-service/target
  261. [INFO]
  262. [INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ member-service ---
  263. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  264. [INFO] Copying 1 resource
  265. [INFO]
  266. [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ member-service ---
  267. [INFO] Changes detected - recompiling the module!
  268. [INFO] Compiling 10 source files to /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/member-service/target/classes
  269. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/member-service/src/main/java/com/goota/pos/member/model/dto/MemberPointTrxDto.java: Some input files use or override a deprecated API.
  270. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/member-service/src/main/java/com/goota/pos/member/model/dto/MemberPointTrxDto.java: Recompile with -Xlint:deprecation for details.
  271. [INFO]
  272. [INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ member-service ---
  273. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  274. [INFO] Copying 1 resource
  275. [INFO]
  276. [INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ member-service ---
  277. [INFO] No sources to compile
  278. [INFO]
  279. [INFO] --- maven-surefire-plugin:2.22.2:test (default-test) @ member-service ---
  280. [INFO] Tests are skipped.
  281. [INFO]
  282. [INFO] --- maven-jar-plugin:3.1.2:jar (default-jar) @ member-service ---
  283. [INFO] Building jar: /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/member-service/target/member-service-0.0.1-SNAPSHOT.jar
  284. [INFO]
  285. [INFO] --- spring-boot-maven-plugin:2.1.9.RELEASE:repackage (repackage) @ member-service ---
  286. [INFO] Attaching repackaged archive /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/member-service/target/member-service-0.0.1-SNAPSHOT-exec.jar with classifier exec
  287. [INFO]
  288. [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ member-service ---
  289. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/member-service/target/member-service-0.0.1-SNAPSHOT.jar to /root/.m2/repository/com/goota/pos/member-service/0.0.1-SNAPSHOT/member-service-0.0.1-SNAPSHOT.jar
  290. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/member-service/pom.xml to /root/.m2/repository/com/goota/pos/member-service/0.0.1-SNAPSHOT/member-service-0.0.1-SNAPSHOT.pom
  291. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/member-service/target/member-service-0.0.1-SNAPSHOT-exec.jar to /root/.m2/repository/com/goota/pos/member-service/0.0.1-SNAPSHOT/member-service-0.0.1-SNAPSHOT-exec.jar
  292. [INFO] ------------------------------------------------------------------------
  293. [INFO] BUILD SUCCESS
  294. [INFO] ------------------------------------------------------------------------
  295. [INFO] Total time:  3.852 s
  296. [INFO] Finished at: 2020-09-06T12:22:37+07:00
  297. [INFO] ------------------------------------------------------------------------
  298. [INFO] Scanning for projects...
  299. [WARNING]
  300. [WARNING] Some problems were encountered while building the effective model for com.goota.pos:merchant-service:jar:0.0.1-SNAPSHOT
  301. [WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.springframework.boot:spring-boot-maven-plugin @ line 79, column 12
  302. [WARNING]
  303. [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
  304. [WARNING]
  305. [WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
  306. [WARNING]
  307. [INFO]
  308. [INFO] -------------------< com.goota.pos:merchant-service >-------------------
  309. [INFO] Building goota merchant service 0.0.1-SNAPSHOT
  310. [INFO] --------------------------------[ jar ]---------------------------------
  311. [INFO]
  312. [INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ merchant-service ---
  313. [INFO] Deleting /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/merchant-service/target
  314. [INFO]
  315. [INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ merchant-service ---
  316. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  317. [INFO] Copying 1 resource
  318. [INFO]
  319. [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ merchant-service ---
  320. [INFO] Changes detected - recompiling the module!
  321. [INFO] Compiling 101 source files to /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/merchant-service/target/classes
  322. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/merchant-service/src/main/java/com/goota/pos/merchant/model/dto/StoreDto.java: Some input files use or override a deprecated API.
  323. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/merchant-service/src/main/java/com/goota/pos/merchant/model/dto/StoreDto.java: Recompile with -Xlint:deprecation for details.
  324. [INFO]
  325. [INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ merchant-service ---
  326. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  327. [INFO] Copying 1 resource
  328. [INFO]
  329. [INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ merchant-service ---
  330. [INFO] No sources to compile
  331. [INFO]
  332. [INFO] --- maven-surefire-plugin:2.22.2:test (default-test) @ merchant-service ---
  333. [INFO] Tests are skipped.
  334. [INFO]
  335. [INFO] --- maven-jar-plugin:3.1.2:jar (default-jar) @ merchant-service ---
  336. [INFO] Building jar: /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/merchant-service/target/merchant-service-0.0.1-SNAPSHOT.jar
  337. [INFO]
  338. [INFO] --- spring-boot-maven-plugin:2.1.9.RELEASE:repackage (repackage) @ merchant-service ---
  339. [INFO] Attaching repackaged archive /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/merchant-service/target/merchant-service-0.0.1-SNAPSHOT-exec.jar with classifier exec
  340. [INFO]
  341. [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ merchant-service ---
  342. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/merchant-service/target/merchant-service-0.0.1-SNAPSHOT.jar to /root/.m2/repository/com/goota/pos/merchant-service/0.0.1-SNAPSHOT/merchant-service-0.0.1-SNAPSHOT.jar
  343. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/merchant-service/pom.xml to /root/.m2/repository/com/goota/pos/merchant-service/0.0.1-SNAPSHOT/merchant-service-0.0.1-SNAPSHOT.pom
  344. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/merchant-service/target/merchant-service-0.0.1-SNAPSHOT-exec.jar to /root/.m2/repository/com/goota/pos/merchant-service/0.0.1-SNAPSHOT/merchant-service-0.0.1-SNAPSHOT-exec.jar
  345. [INFO] ------------------------------------------------------------------------
  346. [INFO] BUILD SUCCESS
  347. [INFO] ------------------------------------------------------------------------
  348. [INFO] Total time:  6.582 s
  349. [INFO] Finished at: 2020-09-06T12:22:45+07:00
  350. [INFO] ------------------------------------------------------------------------
  351. [INFO] Scanning for projects...
  352. [WARNING]
  353. [WARNING] Some problems were encountered while building the effective model for com.goota.pos:partner-service:jar:0.0.1-SNAPSHOT
  354. [WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.springframework.boot:spring-boot-maven-plugin @ line 73, column 12
  355. [WARNING]
  356. [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
  357. [WARNING]
  358. [WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
  359. [WARNING]
  360. [INFO]
  361. [INFO] -------------------< com.goota.pos:partner-service >--------------------
  362. [INFO] Building goota partner service 0.0.1-SNAPSHOT
  363. [INFO] --------------------------------[ jar ]---------------------------------
  364. [INFO]
  365. [INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ partner-service ---
  366. [INFO] Deleting /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/partner-service/target
  367. [INFO]
  368. [INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ partner-service ---
  369. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  370. [INFO] Copying 1 resource
  371. [INFO]
  372. [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ partner-service ---
  373. [INFO] Changes detected - recompiling the module!
  374. [INFO] Compiling 33 source files to /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/partner-service/target/classes
  375. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/partner-service/src/main/java/com/goota/pos/partner/service/GetPartnerApiKeyService.java: Some input files use or override a deprecated API.
  376. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/partner-service/src/main/java/com/goota/pos/partner/service/GetPartnerApiKeyService.java: Recompile with -Xlint:deprecation for details.
  377. [INFO]
  378. [INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ partner-service ---
  379. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  380. [INFO] Copying 1 resource
  381. [INFO]
  382. [INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ partner-service ---
  383. [INFO] No sources to compile
  384. [INFO]
  385. [INFO] --- maven-surefire-plugin:2.22.2:test (default-test) @ partner-service ---
  386. [INFO] Tests are skipped.
  387. [INFO]
  388. [INFO] --- maven-jar-plugin:3.1.2:jar (default-jar) @ partner-service ---
  389. [INFO] Building jar: /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/partner-service/target/partner-service-0.0.1-SNAPSHOT.jar
  390. [INFO]
  391. [INFO] --- spring-boot-maven-plugin:2.1.9.RELEASE:repackage (repackage) @ partner-service ---
  392. [INFO] Attaching repackaged archive /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/partner-service/target/partner-service-0.0.1-SNAPSHOT-exec.jar with classifier exec
  393. [INFO]
  394. [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ partner-service ---
  395. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/partner-service/target/partner-service-0.0.1-SNAPSHOT.jar to /root/.m2/repository/com/goota/pos/partner-service/0.0.1-SNAPSHOT/partner-service-0.0.1-SNAPSHOT.jar
  396. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/partner-service/pom.xml to /root/.m2/repository/com/goota/pos/partner-service/0.0.1-SNAPSHOT/partner-service-0.0.1-SNAPSHOT.pom
  397. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/partner-service/target/partner-service-0.0.1-SNAPSHOT-exec.jar to /root/.m2/repository/com/goota/pos/partner-service/0.0.1-SNAPSHOT/partner-service-0.0.1-SNAPSHOT-exec.jar
  398. [INFO] ------------------------------------------------------------------------
  399. [INFO] BUILD SUCCESS
  400. [INFO] ------------------------------------------------------------------------
  401. [INFO] Total time:  4.127 s
  402. [INFO] Finished at: 2020-09-06T12:22:50+07:00
  403. [INFO] ------------------------------------------------------------------------
  404. [INFO] Scanning for projects...
  405. [WARNING]
  406. [WARNING] Some problems were encountered while building the effective model for com.goota.pos:payment-service:jar:0.0.1-SNAPSHOT
  407. [WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.springframework.boot:spring-boot-maven-plugin @ line 73, column 12
  408. [WARNING]
  409. [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
  410. [WARNING]
  411. [WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
  412. [WARNING]
  413. [INFO]
  414. [INFO] -------------------< com.goota.pos:payment-service >--------------------
  415. [INFO] Building goota payment service 0.0.1-SNAPSHOT
  416. [INFO] --------------------------------[ jar ]---------------------------------
  417. [INFO]
  418. [INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ payment-service ---
  419. [INFO] Deleting /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/payment-service/target
  420. [INFO]
  421. [INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ payment-service ---
  422. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  423. [INFO] Copying 1 resource
  424. [INFO]
  425. [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ payment-service ---
  426. [INFO] Changes detected - recompiling the module!
  427. [INFO] Compiling 6 source files to /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/payment-service/target/classes
  428. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/payment-service/src/main/java/com/goota/pos/promotion/model/dto/PaymentDto.java: /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/payment-service/src/main/java/com/goota/pos/promotion/model/dto/PaymentDto.java uses or overrides a deprecated API.
  429. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/payment-service/src/main/java/com/goota/pos/promotion/model/dto/PaymentDto.java: Recompile with -Xlint:deprecation for details.
  430. [INFO]
  431. [INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ payment-service ---
  432. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  433. [INFO] Copying 1 resource
  434. [INFO]
  435. [INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ payment-service ---
  436. [INFO] No sources to compile
  437. [INFO]
  438. [INFO] --- maven-surefire-plugin:2.22.2:test (default-test) @ payment-service ---
  439. [INFO] Tests are skipped.
  440. [INFO]
  441. [INFO] --- maven-jar-plugin:3.1.2:jar (default-jar) @ payment-service ---
  442. [INFO] Building jar: /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/payment-service/target/payment-service-0.0.1-SNAPSHOT.jar
  443. [INFO]
  444. [INFO] --- spring-boot-maven-plugin:2.1.9.RELEASE:repackage (repackage) @ payment-service ---
  445. [INFO] Attaching repackaged archive /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/payment-service/target/payment-service-0.0.1-SNAPSHOT-exec.jar with classifier exec
  446. [INFO]
  447. [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ payment-service ---
  448. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/payment-service/target/payment-service-0.0.1-SNAPSHOT.jar to /root/.m2/repository/com/goota/pos/payment-service/0.0.1-SNAPSHOT/payment-service-0.0.1-SNAPSHOT.jar
  449. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/payment-service/pom.xml to /root/.m2/repository/com/goota/pos/payment-service/0.0.1-SNAPSHOT/payment-service-0.0.1-SNAPSHOT.pom
  450. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/payment-service/target/payment-service-0.0.1-SNAPSHOT-exec.jar to /root/.m2/repository/com/goota/pos/payment-service/0.0.1-SNAPSHOT/payment-service-0.0.1-SNAPSHOT-exec.jar
  451. [INFO] ------------------------------------------------------------------------
  452. [INFO] BUILD SUCCESS
  453. [INFO] ------------------------------------------------------------------------
  454. [INFO] Total time:  3.585 s
  455. [INFO] Finished at: 2020-09-06T12:22:55+07:00
  456. [INFO] ------------------------------------------------------------------------
  457. [INFO] Scanning for projects...
  458. [WARNING]
  459. [WARNING] Some problems were encountered while building the effective model for com.goota.pos:product-service:jar:0.0.1-SNAPSHOT
  460. [WARNING] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: com.goota.pos:integration-service:jar -> duplicate declaration of version 0.0.1-SNAPSHOT @ line 64, column 15
  461. [WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.springframework.boot:spring-boot-maven-plugin @ line 85, column 12
  462. [WARNING]
  463. [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
  464. [WARNING]
  465. [WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
  466. [WARNING]
  467. [INFO]
  468. [INFO] -------------------< com.goota.pos:product-service >--------------------
  469. [INFO] Building goota product service 0.0.1-SNAPSHOT
  470. [INFO] --------------------------------[ jar ]---------------------------------
  471. [INFO]
  472. [INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ product-service ---
  473. [INFO] Deleting /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/product-service/target
  474. [INFO]
  475. [INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ product-service ---
  476. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  477. [INFO] Copying 1 resource
  478. [INFO]
  479. [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ product-service ---
  480. [INFO] Changes detected - recompiling the module!
  481. [INFO] Compiling 119 source files to /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/product-service/target/classes
  482. [WARNING] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/product-service/src/main/java/com/goota/pos/product/service/SaveItemService.java:[20,55] com.sun.org.apache.xerces.internal.impl.dv.util.Base64 is internal proprietary API and may be removed in a future release
  483. [WARNING] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/product-service/src/main/java/com/goota/pos/product/service/SaveItemService.java:[20,55] com.sun.org.apache.xerces.internal.impl.dv.util.Base64 is internal proprietary API and may be removed in a future release
  484. [WARNING] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/product-service/src/main/java/com/goota/pos/product/service/SaveItemService.java:[20,55] com.sun.org.apache.xerces.internal.impl.dv.util.Base64 is internal proprietary API and may be removed in a future release
  485. [WARNING] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/product-service/src/main/java/com/goota/pos/product/service/SaveItemService.java:[20,55] com.sun.org.apache.xerces.internal.impl.dv.util.Base64 is internal proprietary API and may be removed in a future release
  486. [WARNING] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/product-service/src/main/java/com/goota/pos/product/service/SaveItemService.java:[20,55] com.sun.org.apache.xerces.internal.impl.dv.util.Base64 is internal proprietary API and may be removed in a future release
  487. [WARNING] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/product-service/src/main/java/com/goota/pos/product/service/SaveItemService.java:[72,59] com.sun.org.apache.xerces.internal.impl.dv.util.Base64 is internal proprietary API and may be removed in a future release
  488. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/product-service/src/main/java/com/goota/pos/product/repository/ItemStockRepository.java: Some input files use or override a deprecated API.
  489. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/product-service/src/main/java/com/goota/pos/product/repository/ItemStockRepository.java: Recompile with -Xlint:deprecation for details.
  490. [INFO]
  491. [INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ product-service ---
  492. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  493. [INFO] Copying 1 resource
  494. [INFO]
  495. [INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ product-service ---
  496. [INFO] No sources to compile
  497. [INFO]
  498. [INFO] --- maven-surefire-plugin:2.22.2:test (default-test) @ product-service ---
  499. [INFO] Tests are skipped.
  500. [INFO]
  501. [INFO] --- maven-jar-plugin:3.1.2:jar (default-jar) @ product-service ---
  502. [INFO] Building jar: /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/product-service/target/product-service-0.0.1-SNAPSHOT.jar
  503. [INFO]
  504. [INFO] --- spring-boot-maven-plugin:2.1.9.RELEASE:repackage (repackage) @ product-service ---
  505. [INFO] Attaching repackaged archive /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/product-service/target/product-service-0.0.1-SNAPSHOT-exec.jar with classifier exec
  506. [INFO]
  507. [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ product-service ---
  508. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/product-service/target/product-service-0.0.1-SNAPSHOT.jar to /root/.m2/repository/com/goota/pos/product-service/0.0.1-SNAPSHOT/product-service-0.0.1-SNAPSHOT.jar
  509. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/product-service/pom.xml to /root/.m2/repository/com/goota/pos/product-service/0.0.1-SNAPSHOT/product-service-0.0.1-SNAPSHOT.pom
  510. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/product-service/target/product-service-0.0.1-SNAPSHOT-exec.jar to /root/.m2/repository/com/goota/pos/product-service/0.0.1-SNAPSHOT/product-service-0.0.1-SNAPSHOT-exec.jar
  511. [INFO] ------------------------------------------------------------------------
  512. [INFO] BUILD SUCCESS
  513. [INFO] ------------------------------------------------------------------------
  514. [INFO] Total time:  7.142 s
  515. [INFO] Finished at: 2020-09-06T12:23:03+07:00
  516. [INFO] ------------------------------------------------------------------------
  517. [INFO] Scanning for projects...
  518. [WARNING]
  519. [WARNING] Some problems were encountered while building the effective model for com.goota.pos:promotion-service:jar:0.0.1-SNAPSHOT
  520. [WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.springframework.boot:spring-boot-maven-plugin @ line 79, column 12
  521. [WARNING]
  522. [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
  523. [WARNING]
  524. [WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
  525. [WARNING]
  526. [INFO]
  527. [INFO] ------------------< com.goota.pos:promotion-service >-------------------
  528. [INFO] Building goota promotion service 0.0.1-SNAPSHOT
  529. [INFO] --------------------------------[ jar ]---------------------------------
  530. [INFO]
  531. [INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ promotion-service ---
  532. [INFO] Deleting /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/promotion-service/target
  533. [INFO]
  534. [INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ promotion-service ---
  535. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  536. [INFO] Copying 1 resource
  537. [INFO]
  538. [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ promotion-service ---
  539. [INFO] Changes detected - recompiling the module!
  540. [INFO] Compiling 30 source files to /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/promotion-service/target/classes
  541. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/promotion-service/src/main/java/com/goota/pos/promotion/model/dto/PromotionDto.java: Some input files use or override a deprecated API.
  542. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/promotion-service/src/main/java/com/goota/pos/promotion/model/dto/PromotionDto.java: Recompile with -Xlint:deprecation for details.
  543. [INFO]
  544. [INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ promotion-service ---
  545. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  546. [INFO] Copying 1 resource
  547. [INFO]
  548. [INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ promotion-service ---
  549. [INFO] No sources to compile
  550. [INFO]
  551. [INFO] --- maven-surefire-plugin:2.22.2:test (default-test) @ promotion-service ---
  552. [INFO] Tests are skipped.
  553. [INFO]
  554. [INFO] --- maven-jar-plugin:3.1.2:jar (default-jar) @ promotion-service ---
  555. [INFO] Building jar: /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/promotion-service/target/promotion-service-0.0.1-SNAPSHOT.jar
  556. [INFO]
  557. [INFO] --- spring-boot-maven-plugin:2.1.9.RELEASE:repackage (repackage) @ promotion-service ---
  558. [INFO] Attaching repackaged archive /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/promotion-service/target/promotion-service-0.0.1-SNAPSHOT-exec.jar with classifier exec
  559. [INFO]
  560. [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ promotion-service ---
  561. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/promotion-service/target/promotion-service-0.0.1-SNAPSHOT.jar to /root/.m2/repository/com/goota/pos/promotion-service/0.0.1-SNAPSHOT/promotion-service-0.0.1-SNAPSHOT.jar
  562. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/promotion-service/pom.xml to /root/.m2/repository/com/goota/pos/promotion-service/0.0.1-SNAPSHOT/promotion-service-0.0.1-SNAPSHOT.pom
  563. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/promotion-service/target/promotion-service-0.0.1-SNAPSHOT-exec.jar to /root/.m2/repository/com/goota/pos/promotion-service/0.0.1-SNAPSHOT/promotion-service-0.0.1-SNAPSHOT-exec.jar
  564. [INFO] ------------------------------------------------------------------------
  565. [INFO] BUILD SUCCESS
  566. [INFO] ------------------------------------------------------------------------
  567. [INFO] Total time:  4.748 s
  568. [INFO] Finished at: 2020-09-06T12:23:09+07:00
  569. [INFO] ------------------------------------------------------------------------
  570. [INFO] Scanning for projects...
  571. [WARNING]
  572. [WARNING] Some problems were encountered while building the effective model for com.goota.pos:security-service:jar:0.0.1-SNAPSHOT
  573. [WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.springframework.boot:spring-boot-maven-plugin @ line 79, column 12
  574. [WARNING]
  575. [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
  576. [WARNING]
  577. [WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
  578. [WARNING]
  579. [INFO]
  580. [INFO] -------------------< com.goota.pos:security-service >-------------------
  581. [INFO] Building goota security service 0.0.1-SNAPSHOT
  582. [INFO] --------------------------------[ jar ]---------------------------------
  583. [INFO]
  584. [INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ security-service ---
  585. [INFO] Deleting /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/security-service/target
  586. [INFO]
  587. [INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ security-service ---
  588. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  589. [INFO] Copying 1 resource
  590. [INFO]
  591. [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ security-service ---
  592. [INFO] Changes detected - recompiling the module!
  593. [INFO] Compiling 62 source files to /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/security-service/target/classes
  594. [INFO]
  595. [INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ security-service ---
  596. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  597. [INFO] Copying 1 resource
  598. [INFO]
  599. [INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ security-service ---
  600. [INFO] No sources to compile
  601. [INFO]
  602. [INFO] --- maven-surefire-plugin:2.22.2:test (default-test) @ security-service ---
  603. [INFO] Tests are skipped.
  604. [INFO]
  605. [INFO] --- maven-jar-plugin:3.1.2:jar (default-jar) @ security-service ---
  606. [INFO] Building jar: /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/security-service/target/security-service-0.0.1-SNAPSHOT.jar
  607. [INFO]
  608. [INFO] --- spring-boot-maven-plugin:2.1.9.RELEASE:repackage (repackage) @ security-service ---
  609. [INFO] Attaching repackaged archive /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/security-service/target/security-service-0.0.1-SNAPSHOT-exec.jar with classifier exec
  610. [INFO]
  611. [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ security-service ---
  612. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/security-service/target/security-service-0.0.1-SNAPSHOT.jar to /root/.m2/repository/com/goota/pos/security-service/0.0.1-SNAPSHOT/security-service-0.0.1-SNAPSHOT.jar
  613. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/security-service/pom.xml to /root/.m2/repository/com/goota/pos/security-service/0.0.1-SNAPSHOT/security-service-0.0.1-SNAPSHOT.pom
  614. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/security-service/target/security-service-0.0.1-SNAPSHOT-exec.jar to /root/.m2/repository/com/goota/pos/security-service/0.0.1-SNAPSHOT/security-service-0.0.1-SNAPSHOT-exec.jar
  615. [INFO] ------------------------------------------------------------------------
  616. [INFO] BUILD SUCCESS
  617. [INFO] ------------------------------------------------------------------------
  618. [INFO] Total time:  4.912 s
  619. [INFO] Finished at: 2020-09-06T12:23:15+07:00
  620. [INFO] ------------------------------------------------------------------------
  621. [INFO] Scanning for projects...
  622. [WARNING]
  623. [WARNING] Some problems were encountered while building the effective model for com.goota.pos:trade-service:jar:0.0.1-SNAPSHOT
  624. [WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.springframework.boot:spring-boot-maven-plugin @ line 87, column 12
  625. [WARNING]
  626. [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
  627. [WARNING]
  628. [WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
  629. [WARNING]
  630. [INFO]
  631. [INFO] --------------------< com.goota.pos:trade-service >---------------------
  632. [INFO] Building goota trade service 0.0.1-SNAPSHOT
  633. [INFO] --------------------------------[ jar ]---------------------------------
  634. [INFO]
  635. [INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ trade-service ---
  636. [INFO] Deleting /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/trade-service/target
  637. [INFO]
  638. [INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ trade-service ---
  639. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  640. [INFO] Copying 1 resource
  641. [INFO]
  642. [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ trade-service ---
  643. [INFO] Changes detected - recompiling the module!
  644. [INFO] Compiling 57 source files to /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/trade-service/target/classes
  645. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/trade-service/src/main/java/com/goota/pos/trade/model/vo/GetSellingItemResponseVo.java: Some input files use or override a deprecated API.
  646. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/trade-service/src/main/java/com/goota/pos/trade/model/vo/GetSellingItemResponseVo.java: Recompile with -Xlint:deprecation for details.
  647. [INFO]
  648. [INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ trade-service ---
  649. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  650. [INFO] Copying 1 resource
  651. [INFO]
  652. [INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ trade-service ---
  653. [INFO] No sources to compile
  654. [INFO]
  655. [INFO] --- maven-surefire-plugin:2.22.2:test (default-test) @ trade-service ---
  656. [INFO] Tests are skipped.
  657. [INFO]
  658. [INFO] --- maven-jar-plugin:3.1.2:jar (default-jar) @ trade-service ---
  659. [INFO] Building jar: /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/trade-service/target/trade-service-0.0.1-SNAPSHOT.jar
  660. [INFO]
  661. [INFO] --- spring-boot-maven-plugin:2.1.9.RELEASE:repackage (repackage) @ trade-service ---
  662. [INFO] Attaching repackaged archive /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/trade-service/target/trade-service-0.0.1-SNAPSHOT-exec.jar with classifier exec
  663. [INFO]
  664. [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ trade-service ---
  665. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/trade-service/target/trade-service-0.0.1-SNAPSHOT.jar to /root/.m2/repository/com/goota/pos/trade-service/0.0.1-SNAPSHOT/trade-service-0.0.1-SNAPSHOT.jar
  666. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/trade-service/pom.xml to /root/.m2/repository/com/goota/pos/trade-service/0.0.1-SNAPSHOT/trade-service-0.0.1-SNAPSHOT.pom
  667. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/trade-service/target/trade-service-0.0.1-SNAPSHOT-exec.jar to /root/.m2/repository/com/goota/pos/trade-service/0.0.1-SNAPSHOT/trade-service-0.0.1-SNAPSHOT-exec.jar
  668. [INFO] ------------------------------------------------------------------------
  669. [INFO] BUILD SUCCESS
  670. [INFO] ------------------------------------------------------------------------
  671. [INFO] Total time:  5.436 s
  672. [INFO] Finished at: 2020-09-06T12:23:22+07:00
  673. [INFO] ------------------------------------------------------------------------
  674. [INFO] Scanning for projects...
  675. [WARNING]
  676. [WARNING] Some problems were encountered while building the effective model for com.goota.pos:item-service:jar:0.0.1-SNAPSHOT
  677. [WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.springframework.boot:spring-boot-maven-plugin @ line 191, column 12
  678. [WARNING]
  679. [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
  680. [WARNING]
  681. [WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
  682. [WARNING]
  683. [INFO]
  684. [INFO] ---------------------< com.goota.pos:item-service >---------------------
  685. [INFO] Building Goota POS 0.0.1-SNAPSHOT
  686. [INFO] --------------------------------[ jar ]---------------------------------
  687. [WARNING] The artifact org.hibernate:hibernate-validator:jar:6.0.11.Final has been relocated to org.hibernate.validator:hibernate-validator:jar:6.0.11.Final
  688. [INFO]
  689. [INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ item-service ---
  690. [INFO] Deleting /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item/target
  691. [INFO]
  692. [INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ item-service ---
  693. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  694. [INFO] Copying 1 resource
  695. [INFO]
  696. [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ item-service ---
  697. [INFO] Changes detected - recompiling the module!
  698. [INFO] Compiling 93 source files to /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item/target/classes
  699. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item/src/main/java/com/goota/pos/item/ingredient/services/GetIngredientReachMinimumStockService.java: Some input files use or override a deprecated API.
  700. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item/src/main/java/com/goota/pos/item/ingredient/services/GetIngredientReachMinimumStockService.java: Recompile with -Xlint:deprecation for details.
  701. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item/src/main/java/com/goota/pos/item/services/impl/StockServiceImpl.java: Some input files use unchecked or unsafe operations.
  702. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item/src/main/java/com/goota/pos/item/services/impl/StockServiceImpl.java: Recompile with -Xlint:unchecked for details.
  703. [INFO]
  704. [INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ item-service ---
  705. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  706. [INFO] Copying 1 resource
  707. [INFO]
  708. [INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ item-service ---
  709. [INFO] No sources to compile
  710. [INFO]
  711. [INFO] --- maven-surefire-plugin:2.22.2:test (default-test) @ item-service ---
  712. [INFO] Tests are skipped.
  713. [INFO]
  714. [INFO] --- maven-jar-plugin:3.1.2:jar (default-jar) @ item-service ---
  715. [INFO] Building jar: /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item/target/item-service-0.0.1-SNAPSHOT.jar
  716. [INFO]
  717. [INFO] --- spring-boot-maven-plugin:2.1.9.RELEASE:repackage (repackage) @ item-service ---
  718. [INFO] Attaching repackaged archive /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item/target/item-service-0.0.1-SNAPSHOT-exec.jar with classifier exec
  719. [INFO]
  720. [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ item-service ---
  721. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item/target/item-service-0.0.1-SNAPSHOT.jar to /root/.m2/repository/com/goota/pos/item-service/0.0.1-SNAPSHOT/item-service-0.0.1-SNAPSHOT.jar
  722. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item/pom.xml to /root/.m2/repository/com/goota/pos/item-service/0.0.1-SNAPSHOT/item-service-0.0.1-SNAPSHOT.pom
  723. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item/target/item-service-0.0.1-SNAPSHOT-exec.jar to /root/.m2/repository/com/goota/pos/item-service/0.0.1-SNAPSHOT/item-service-0.0.1-SNAPSHOT-exec.jar
  724. [INFO] ------------------------------------------------------------------------
  725. [INFO] BUILD SUCCESS
  726. [INFO] ------------------------------------------------------------------------
  727. [INFO] Total time:  5.173 s
  728. [INFO] Finished at: 2020-09-06T12:23:28+07:00
  729. [INFO] ------------------------------------------------------------------------
  730. [INFO] Scanning for projects...
  731. [WARNING]
  732. [WARNING] Some problems were encountered while building the effective model for com.goota.pos:reporting-service:jar:0.0.1-SNAPSHOT
  733. [WARNING] 'build.plugins.plugin.(groupId:artifactId)' must be unique but found duplicate declaration of plugin org.springframework.boot:spring-boot-maven-plugin @ line 73, column 12
  734. [WARNING]
  735. [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
  736. [WARNING]
  737. [WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
  738. [WARNING]
  739. [INFO]
  740. [INFO] ------------------< com.goota.pos:reporting-service >-------------------
  741. [INFO] Building goota reporting service 0.0.1-SNAPSHOT
  742. [INFO] --------------------------------[ jar ]---------------------------------
  743. [INFO]
  744. [INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ reporting-service ---
  745. [INFO] Deleting /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/reporting-service/target
  746. [INFO]
  747. [INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ reporting-service ---
  748. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  749. [INFO] Copying 17 resources
  750. [INFO]
  751. [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ reporting-service ---
  752. [INFO] Changes detected - recompiling the module!
  753. [INFO] Compiling 24 source files to /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/reporting-service/target/classes
  754. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/reporting-service/src/main/java/com/goota/pos/reporting/table/TableGrossSale.java: Some input files use unchecked or unsafe operations.
  755. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/reporting-service/src/main/java/com/goota/pos/reporting/table/TableGrossSale.java: Recompile with -Xlint:unchecked for details.
  756. [INFO]
  757. [INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ reporting-service ---
  758. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  759. [INFO] Copying 1 resource
  760. [INFO]
  761. [INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ reporting-service ---
  762. [INFO] No sources to compile
  763. [INFO]
  764. [INFO] --- maven-surefire-plugin:2.22.2:test (default-test) @ reporting-service ---
  765. [INFO] Tests are skipped.
  766. [INFO]
  767. [INFO] --- maven-jar-plugin:3.1.2:jar (default-jar) @ reporting-service ---
  768. [INFO] Building jar: /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/reporting-service/target/reporting-service-0.0.1-SNAPSHOT.jar
  769. [INFO]
  770. [INFO] --- spring-boot-maven-plugin:2.1.9.RELEASE:repackage (repackage) @ reporting-service ---
  771. [INFO] Attaching repackaged archive /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/reporting-service/target/reporting-service-0.0.1-SNAPSHOT-exec.jar with classifier exec
  772. [INFO]
  773. [INFO] --- maven-install-plugin:2.5.2:install (default-install) @ reporting-service ---
  774. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/reporting-service/target/reporting-service-0.0.1-SNAPSHOT.jar to /root/.m2/repository/com/goota/pos/reporting-service/0.0.1-SNAPSHOT/reporting-service-0.0.1-SNAPSHOT.jar
  775. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/reporting-service/pom.xml to /root/.m2/repository/com/goota/pos/reporting-service/0.0.1-SNAPSHOT/reporting-service-0.0.1-SNAPSHOT.pom
  776. [INFO] Installing /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/reporting-service/target/reporting-service-0.0.1-SNAPSHOT-exec.jar to /root/.m2/repository/com/goota/pos/reporting-service/0.0.1-SNAPSHOT/reporting-service-0.0.1-SNAPSHOT-exec.jar
  777. [INFO] ------------------------------------------------------------------------
  778. [INFO] BUILD SUCCESS
  779. [INFO] ------------------------------------------------------------------------
  780. [INFO] Total time:  3.929 s
  781. [INFO] Finished at: 2020-09-06T12:23:34+07:00
  782. [INFO] ------------------------------------------------------------------------
  783. [INFO] Scanning for projects...
  784. [WARNING]
  785. [WARNING] Some problems were encountered while building the effective model for com.goota.pos:api:war:0.0.1-SNAPSHOT
  786. [WARNING] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.springframework.boot:spring-boot-starter-tomcat:jar -> duplicate declaration of version (?) @ line 172, column 15
  787. [WARNING] The expression ${artifactId} is deprecated. Please use ${project.artifactId} instead.
  788. [WARNING]
  789. [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
  790. [WARNING]
  791. [WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
  792. [WARNING]
  793. [INFO]
  794. [INFO] -------------------------< com.goota.pos:api >--------------------------
  795. [INFO] Building Goota POS 0.0.1-SNAPSHOT
  796. [INFO] --------------------------------[ war ]---------------------------------
  797. [WARNING] The artifact org.hibernate:hibernate-validator:jar:6.0.11.Final has been relocated to org.hibernate.validator:hibernate-validator:jar:6.0.11.Final
  798. [INFO]
  799. [INFO] --- maven-clean-plugin:3.1.0:clean (default-clean) @ api ---
  800. [INFO] Deleting /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item-rest/target
  801. [INFO]
  802. [INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ api ---
  803. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  804. [INFO] Copying 1 resource
  805. [INFO] Copying 1 resource
  806. [INFO]
  807. [INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ api ---
  808. [INFO] Changes detected - recompiling the module!
  809. [INFO] Compiling 28 source files to /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item-rest/target/classes
  810. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item-rest/src/main/java/com/goota/pos/api/controllers/IngredientController.java: /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item-rest/src/main/java/com/goota/pos/api/controllers/IngredientController.java uses or overrides a deprecated API.
  811. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item-rest/src/main/java/com/goota/pos/api/controllers/IngredientController.java: Recompile with -Xlint:deprecation for details.
  812. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item-rest/src/main/java/com/goota/pos/api/controllers/CategoryController.java: Some input files use unchecked or unsafe operations.
  813. [INFO] /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item-rest/src/main/java/com/goota/pos/api/controllers/CategoryController.java: Recompile with -Xlint:unchecked for details.
  814. [INFO]
  815. [INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ api ---
  816. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  817. [INFO] skip non existing resourceDirectory /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item-rest/src/test/resources
  818. [INFO]
  819. [INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ api ---
  820. [INFO] Changes detected - recompiling the module!
  821. [INFO] Compiling 1 source file to /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item-rest/target/test-classes
  822. [INFO]
  823. [INFO] --- maven-surefire-plugin:2.22.2:test (default-test) @ api ---
  824. [INFO] Tests are skipped.
  825. [INFO]
  826. [INFO] --- maven-war-plugin:3.2.3:war (default-war) @ api ---
  827. [INFO] Packaging webapp
  828. [INFO] Assembling webapp [api] in [/var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item-rest/target/api]
  829. [INFO] Processing war project
  830. [INFO] Webapp assembled in [135 msecs]
  831. [INFO] Building war: /var/lib/jenkins/workspace/Goota-BE-Contabox-Release/ummah-item-rest/target/api.war
  832. [INFO]
  833. [INFO] --- spring-boot-maven-plugin:2.1.9.RELEASE:repackage (repackage) @ api ---
  834. [INFO] Replacing main artifact with repackaged archive
  835. [INFO] ------------------------------------------------------------------------
  836. [INFO] BUILD SUCCESS
  837. [INFO] ------------------------------------------------------------------------
  838. [INFO] Total time:  5.923 s
  839. [INFO] Finished at: 2020-09-06T12:23:41+07:00
  840. [INFO] ------------------------------------------------------------------------
  841. products
  842. ROOT
  843. ROOT_TMP
  844. ROOT.war
  845. + echo New WAR file:
  846. New WAR file:
  847. + stat /var/lib/tomcat9/webapps/ROOT.war
  848.   File: /var/lib/tomcat9/webapps/ROOT.war
  849.   Size: 55237037    Blocks: 107888     IO Block: 4096   regular file
  850. Device: 802h/2050d  Inode: 34346475    Links: 1
  851. Access: (0640/-rw-r-----)  Uid: (  997/  tomcat)   Gid: (  997/  tomcat)
  852. Access: 2020-09-06 12:21:29.512086634 +0700
  853. Modify: 2020-09-06 12:23:41.550664622 +0700
  854. Change: 2020-09-06 12:23:41.550664622 +0700
  855.  Birth: -
  856. Finished: SUCCESS
Add Comment
Please, Sign In to add comment