List of commits:
Subject Hash Author Date (UTC)
update resttemplate configurations bd1da0c99a2f97c0f7ac1537121a093b7229cba5 mandas04 2019-01-31 13:10:04
Refactor test packages ddc3aae04e4ebceb21b5a421813be6e0cc7733ad mandas04 2019-01-31 11:46:57
Refactoring Test packages e916b5f3f15beb28f5a7373bc046cc81fb2b7630 mandas04 2019-01-31 04:36:10
Refactor DockerFile 90de083d4cb6128977b761994a02b244c8d3cf6c mandas04 2019-01-30 14:31:54
Refactor DockerFile cbf36a94f7e3d7cd6ca2c36279ec5d28886afc54 mandas04 2019-01-30 12:52:25
Liquibase setup for dev and prod separately 93cb8265755e2ceb14c45b1f99e8581aa93155fc mandas04 2019-01-30 12:41:48
Sanity test in dev: correct env variable name f0ecedb119b83f313b5a04e1affb4e1584790ce4 mandas04 2019-01-30 09:47:33
Refactor Jenkinsfile c853f0d754b0c4086e4fb02a0d4776e9865f77f5 mandas04 2019-01-30 09:16:41
Put hyphen in place of empty version c45822e737f1fc38a9498f5c3600de374762c588 mandas04 2019-01-30 09:14:51
Plot all applications (reference + reporting) in report 2c37a8767f97d63ac8c347f33fcc765d08ce1998 mandas04 2019-01-30 06:09:22
Setup liquibase for dev and prod separately 49dc85a8404833ebb7193a396a1ede16dafa32e5 mandas04 2019-01-30 05:44:31
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
Commit bd1da0c99a2f97c0f7ac1537121a093b7229cba5 - update resttemplate configurations
Author: mandas04
Author date (UTC): 2019-01-31 13:10
Committer name: mandas04
Committer date (UTC): 2019-01-31 13:10
Parent(s): ddc3aae04e4ebceb21b5a421813be6e0cc7733ad
Signing key:
Tree: c5a3fca507e144acf6a90a24f3215dff2029cb2b
File Lines added Lines deleted
src/main/java/com/kingfisher/deployment/audit/rest/client/RestClientConfig.java 2 2
src/main/resources/application-dev.properties 6 2
src/main/resources/application-prod.properties 2 2
src/test/java/com/kingfisher/deployment/audit/test/integration/ApplicationTest.java 1 1
src/test/java/com/kingfisher/deployment/audit/test/integration/suite/IntegrationTestSuite.java 2 2
File src/main/java/com/kingfisher/deployment/audit/rest/client/RestClientConfig.java changed (mode: 100644) (index 91b036d..0bf10a1)
... ... import com.kingfisher.deployment.audit.security.PasswordCodec;
36 36 @Configuration @Configuration
37 37 public class RestClientConfig { public class RestClientConfig {
38 38
39 @Value("${trust-store}")
39 @Value("${ssl.truststore.file}")
40 40 String trustStore; String trustStore;
41 41
42 @Value("${trust-store-password}")
42 @Value("${ssl.truststore.password}")
43 43 String trustStorePassword; String trustStorePassword;
44 44
45 45 @Autowired @Autowired
File src/main/resources/application-dev.properties changed (mode: 100644) (index 448349a..b48cc12)
... ... spring.jpa.properties.hibernate.jdbc.batch_size=50
13 13
14 14 liquibase.change.log.file=/src/main/resources/db/changelog-dev.xml liquibase.change.log.file=/src/main/resources/db/changelog-dev.xml
15 15
16 trust-store-password=g+nTqtgAzbLZa9qJL5VeoA==
17 trust-store=/src/main/resources/cert/truststore.jks
16 ssl.truststore.password=g+nTqtgAzbLZa9qJL5VeoA==
17 ssl.truststore.file=/src/main/resources/cert/truststore.jks
18
19 ssl.truststore.password=g+nTqtgAzbLZa9qJL5VeoA==
20 ssl.truststore.file=truststore.jks
21
File src/main/resources/application-prod.properties changed (mode: 100644) (index da993b4..2c5ff87)
... ... spring.jpa.properties.hibernate.jdbc.batch_size=50
13 13
14 14 liquibase.change.log.file=/src/main/resources/db/changelog-prod.xml liquibase.change.log.file=/src/main/resources/db/changelog-prod.xml
15 15
16 trust-store-password=g+nTqtgAzbLZa9qJL5VeoA==
17 trust-store=/src/main/resources/cert/truststore.jks
16 ssl.truststore.password=g+nTqtgAzbLZa9qJL5VeoA==
17 ssl.truststore.file=truststore.jks
File src/test/java/com/kingfisher/deployment/audit/test/integration/ApplicationTest.java renamed from src/test/java/com/kingfisher/deployment/audit/test/integration/ApplicationTests.java (similarity 96%) (mode: 100644) (index 9c4d13e..bc8f31c)
... ... import io.restassured.http.ContentType;
15 15 @RunWith(SpringRunner.class) @RunWith(SpringRunner.class)
16 16 @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
17 17 @ActiveProfiles("dev") @ActiveProfiles("dev")
18 public class ApplicationTests {
18 public class ApplicationTest {
19 19 @LocalServerPort @LocalServerPort
20 20 private int port; private int port;
21 21
File src/test/java/com/kingfisher/deployment/audit/test/integration/suite/IntegrationTestSuite.java changed (mode: 100644) (index 9de1ee1..454f4c3)
... ... import org.junit.runner.RunWith;
4 4 import org.junit.runners.Suite; import org.junit.runners.Suite;
5 5 import org.junit.runners.Suite.SuiteClasses; import org.junit.runners.Suite.SuiteClasses;
6 6
7 import com.kingfisher.deployment.audit.test.integration.ApplicationTests;
7 import com.kingfisher.deployment.audit.test.integration.ApplicationTest;
8 8 import com.kingfisher.deployment.audit.test.integration.IIBRestClientTest; import com.kingfisher.deployment.audit.test.integration.IIBRestClientTest;
9 9
10 10 @RunWith(Suite.class) @RunWith(Suite.class)
11 @SuiteClasses({ ApplicationTests.class, IIBRestClientTest.class })
11 @SuiteClasses({ ApplicationTest.class, IIBRestClientTest.class })
12 12 public class IntegrationTestSuite { public class IntegrationTestSuite {
13 13
14 14 } }
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/Sumangal-IN/deployment-audit

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/Sumangal-IN/deployment-audit

Clone this repository using git:
git clone git://git.rocketgit.com/user/Sumangal-IN/deployment-audit

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main