Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Jenkins secret variable udpate | 23ef9bc048d411e15da152aba1d87616bc7c0b97 | mandas04 | 2019-01-30 05:03:31 |
User service reimplented as POST and DELETE method | 8e08f92e52927c03152c7eca01b0549eb6608bf3 | mandas04 | 2019-01-30 05:00:07 |
Adding wait for 2 mins before sanity test | ebec65b19a1bd1cb36f0a8ac03d22c8893bf9123 | mandas04 | 2019-01-29 15:42:27 |
Adding acceptance test criteria | b38c915f4f14f13a73b3ae3945f791342ea31099 | mandas04 | 2019-01-29 12:55:27 |
Fixed ordering of environments in report | a76fd02548ee2550828c1084b233e2bdb5021312 | mandas04 | 2019-01-29 11:39:26 |
Logger integration | 27355b907d8c2e4d3a802bf596157807f723e240 | mandas04 | 2019-01-29 09:01:37 |
Application constant update | 43899921f01328d6c94363c6a393aa34c355acfd | mandas04 | 2019-01-29 05:08:06 |
disable IIB api access | b0b3ebfc82b85bcfe74cc575e70d816ccfcb13cc | mandas04 | 2019-01-28 16:01:16 |
Adding custom exception class | 7008923fecce4ddea63817a2ca28503c9ca88ebf | mandas04 | 2019-01-28 13:56:58 |
Adding custom exception class | 343917b1fb344128a0f9d24aba7067e2141467f5 | mandas04 | 2019-01-28 13:56:56 |
RestTemplate addition with SSL support | 22ff2e8c20c6a971100f0065dd010ef1e98b03de | mandas04 | 2019-01-28 09:04:14 |
Refactor Jenkinsfile | 8f034841202072fa31fc6fa43c6fb25949b8a815 | mandas04 | 2019-01-27 14:40:17 |
Adding unit test cases | 18fafbcc7ee0395422ab6a558483f5c828250841 | mandas04 | 2019-01-26 19:25:11 |
Change in report UTF8 character replaced by \uxxx Report rows are sorted with ambiguous applications are placed at top | fe3ed81569cf83faf59f8463b2e78a7c028dccd0 | mandas04 | 2019-01-26 17:02:50 |
Adding constants as string in Swagger Config | 905bc88787499ed8ed319fd7dfa246c1d49e06e1 | mandas04 | 2019-01-26 15:14:53 |
Refactor packages | 11f8bee99fad844c80f4a0d375fa416915694c12 | mandas04 | 2019-01-26 15:05:50 |
Refactor Jenkinsfile and build.gradle | fe1b806100e4a90f038c781d5a0ca1c3de99a3cf | mandas04 | 2019-01-26 12:52:39 |
Get git commit of the current build | 5b08ed72521e1df48c8d528c7dd0c9164c731117 | mandas04 | 2019-01-25 09:27:24 |
Jenkinsfile docker run parameter change | d2d996261f214bbe0b2985051519b59dc3ba3e07 | mandas04 | 2019-01-24 20:47:57 |
Deactivating IIB api call | 610b02552a202ba38c85092dbec92d2c8e72f77a | mandas04 | 2019-01-24 20:43:26 |
File | Lines added | Lines deleted |
---|---|---|
Jenkinsfile | 4 | 4 |
src/main/java/com/kingfisher/deployment/audit/data/builder/DeploymentStatusBuidler.java | 1 | 1 |
src/main/java/com/kingfisher/deployment/audit/service/DeploymentAuditService.java | 1 | 1 |
File Jenkinsfile changed (mode: 100644) (index 003e325..e43bcd9) | |||
... | ... | pipeline{ | |
3 | 3 | label 'iib-sca-build' | label 'iib-sca-build' |
4 | 4 | } | } |
5 | 5 | environment { | environment { |
6 | codecIV = credentials('deployment_audit_api_iv') | ||
7 | codecKey = credentials('deployment_audit_api_key') | ||
8 | // codecIV_prod = credentials('deployment_audit_api_iv_prod') | ||
9 | // codecKey_prod = credentials('deployment_audit_api_key_prod') | ||
6 | codecIV = credentials('deployment_audit_api_iv_nonprod') | ||
7 | codecKey = credentials('deployment_audit_api_key_nonprod') | ||
8 | codecIV_prod = credentials('deployment_audit_api_iv_prod') | ||
9 | codecKey_prod = credentials('deployment_audit_api_key_prod') | ||
10 | 10 | } | } |
11 | 11 | stages | stages |
12 | 12 | { | { |
File src/main/java/com/kingfisher/deployment/audit/data/builder/DeploymentStatusBuidler.java renamed from src/main/java/com/kingfisher/deployment/audit/builder/DeploymentStatusBuidler.java (similarity 96%) (mode: 100644) (index 28791bf..53d5a61) | |||
1 | package com.kingfisher.deployment.audit.builder; | ||
1 | package com.kingfisher.deployment.audit.data.builder; | ||
2 | 2 | ||
3 | 3 | import java.text.ParseException; | import java.text.ParseException; |
4 | 4 | import java.text.SimpleDateFormat; | import java.text.SimpleDateFormat; |
File src/main/java/com/kingfisher/deployment/audit/service/DeploymentAuditService.java changed (mode: 100644) (index 6c2f67b..ab46f93) | |||
... | ... | import java.util.Map; | |
9 | 9 | import org.springframework.beans.factory.annotation.Autowired; | import org.springframework.beans.factory.annotation.Autowired; |
10 | 10 | import org.springframework.stereotype.Service; | import org.springframework.stereotype.Service; |
11 | 11 | ||
12 | import com.kingfisher.deployment.audit.builder.DeploymentStatusBuidler; | ||
12 | import com.kingfisher.deployment.audit.data.builder.DeploymentStatusBuidler; | ||
13 | 13 | import com.kingfisher.deployment.audit.exception.model.DeploymentAuditException; | import com.kingfisher.deployment.audit.exception.model.DeploymentAuditException; |
14 | 14 | import com.kingfisher.deployment.audit.model.Deployment; | import com.kingfisher.deployment.audit.model.Deployment; |
15 | 15 | import com.kingfisher.deployment.audit.model.JenkinsDeploymentStatus; | import com.kingfisher.deployment.audit.model.JenkinsDeploymentStatus; |