Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added the HMCTS Logging along with Lombok for the Fees Register App p… #393

Closed
wants to merge 26 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
9d78190
Added the HMCTS Logging along with Lombok for the Fees Register App p…
Jul 19, 2021
94ae7bb
Adding the Upto date CVE Fixes....for the tomcat embed core and webso…
Jul 19, 2021
5f05d57
Adding the Upto date CVE Fixes....for the tomcat embed core and webso…
Jul 19, 2021
f71549a
resolved nightly build failure issue
prashant-khunte Jul 19, 2021
9d7565e
Merge pull request #394 from hmcts/nightly-dev
krishnanuthalapati Jul 19, 2021
f5d58a8
Added the HMCTS Logging along with Lombok for the Fees Register App p…
Jul 19, 2021
901dc24
Adding the Upto date CVE Fixes....for the tomcat embed core and webso…
Jul 19, 2021
2c6fd82
Adding the Upto date CVE Fixes....for the tomcat embed core and webso…
Jul 19, 2021
0c72e79
Merge branch 'PAY-4882' of https://github.com/hmcts/ccfr-fees-registe…
Jul 19, 2021
82267c1
resolved pact issue , apply patch
prashant-khunte Jul 20, 2021
cd1bc1b
restore the version com.dius.pact to 4.1.7
prashant-khunte Jul 20, 2021
06391df
4.1.7 cause build fail, downgrade to 4.1.0
prashant-khunte Jul 20, 2021
a38c4bd
Update build.gradle
prashant-khunte Jul 20, 2021
6616cc1
Merge pull request #395 from hmcts/nightly-dev
krishnanuthalapati Jul 20, 2021
6911b7b
Added the HMCTS Logging along with Lombok for the Fees Register App p…
Jul 19, 2021
af1831c
Adding the Upto date CVE Fixes....for the tomcat embed core and webso…
Jul 19, 2021
b2dc5d0
Adding the Upto date CVE Fixes....for the tomcat embed core and webso…
Jul 19, 2021
7b9d44f
Adding the Upto date CVE Fixes....for the tomcat embed core and webso…
Jul 19, 2021
fb5f740
Adding the Upto date CVE Fixes....for the tomcat embed core and webso…
Jul 19, 2021
4ff69c1
Merge branch 'PAY-4882' of https://github.com/hmcts/ccfr-fees-registe…
Jul 22, 2021
37c2a10
Adding the Upto date CVE Fixes....for the tomcat embed core and webso…
Jul 19, 2021
d75feee
Adding the Upto date CVE Fixes....for the tomcat embed core and webso…
Jul 19, 2021
7238a61
Adding the Upto date CVE Fixes....for the tomcat embed core and webso…
Jul 19, 2021
92439d7
Adding the Upto date CVE Fixes....for the tomcat embed core and webso…
Jul 19, 2021
d11b0a4
Merge branch 'PAY-4882' of https://github.com/hmcts/ccfr-fees-registe…
Jul 22, 2021
535ed16
Bumping chart version/ fixing aliases
hmcts-jenkins-a-to-c[bot] Oct 26, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions api/src/functionalTest/resources/logback-test.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml"/>
<logger name="org.springframework.context" level="WARN"/>
<logger name="org.springframework.web.context" level="WARN"/>
<logger name="uk.gov.hmcts.fees.register.functional" level="DEBUG"/>
</configuration>
7 changes: 7 additions & 0 deletions api/src/smokeTest/resources/logback-test.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml"/>
<logger name="org.springframework.context" level="WARN"/>
<logger name="org.springframework.web.context" level="WARN"/>
<logger name="uk.gov.hmcts.fees.register.smoke" level="DEBUG"/>
</configuration>
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package uk.gov.hmcts.fees2.register.api.controllers;

import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.time.DateUtils;
import org.junit.Rule;
import org.junit.Test;
Expand Down Expand Up @@ -32,6 +33,7 @@
/**
* Created by tarun on 02/11/2017.
*/
@Slf4j
@Transactional
public class FeeControllerTest extends BaseIntegrationTest {

Expand All @@ -54,6 +56,7 @@ public synchronized void readFeeTest() throws Exception {
}));

forceDeleteFee(arr[3]);
log.info("Read Fee Test Executed successfully....");
}

@Test
Expand Down
8 changes: 8 additions & 0 deletions api/src/test/resources/logback-test.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml"/>
<logger name="org.springframework.context" level="WARN"/>
<logger name="org.springframework.web.context" level="WARN"/>
<logger name="uk.gov.hmcts.fees2.register.api" level="DEBUG"/>
<logger name="uk.gov.hmcts.fees.register.api" level="DEBUG"/>
</configuration>
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
id 'jacoco'
id 'maven-publish'
id 'com.jfrog.bintray' version '1.8.4'
id "au.com.dius.pact" version "4.1.7"
id "au.com.dius.pact" version "4.0.0"
}

def versions = [
Expand Down Expand Up @@ -109,6 +109,7 @@ subprojects {
compileOnly group: 'com.google.code.findbugs', name: 'annotations', version: '3.0.1'
compileOnly group: 'joda-time', name: 'joda-time', version: '2.9.9'
implementation 'org.springframework.boot:spring-boot-starter-validation'
testImplementation group: 'uk.gov.hmcts.reform', name: 'logging', version: '5.1.1'
}

task sourcesJar(type: Jar, dependsOn: classes) {
Expand Down Expand Up @@ -224,7 +225,7 @@ subprojects {
protocol = 'http'
host = 'fees-register-api-aat.service.core-compute-aat.internal'
port = 80
if (pactBrokerUrl) hasPactsFromPactBroker(pactBrokerUrl)
if (pactBrokerUrl) hasPactsFromPactBrokerWithTag(pactBrokerUrl, 'master')
publish {
if (pactBrokerUrl) pactBrokerUrl = pactBrokerUrl
pactBrokerUrl = System.getProperty("PACT_BROKER_URL") ?: 'http://localhost:80'
Expand Down
4 changes: 2 additions & 2 deletions charts/fees-register-api/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ appVersion: "2.0"
description: Helm chart for the HMCTS fees-register api
name: fees-register-api
home: https://github.com/hmcts/ccfr-fees-register-app
version: 0.3.4
version: 0.3.5
maintainers:
- name: HMCTS Fees & Payments Dev Team
email: [email protected]
dependencies:
- name: java
version: 3.4.5
repository: '@hmctspublic'
repository: 'https://hmctspublic.azurecr.io/helm/v1/repo/'
4 changes: 2 additions & 2 deletions cve-resolution-strategy.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ configurations.all {
* CVE-2020-17527, CVE-2020-8022, CVE-2020-9484
* */
if (det.requested.name == 'tomcat-embed-core') {
det.useVersion '9.0.43'
det.useVersion '9.0.50'
}

if (det.requested.name == 'tomcat-embed-websocket') {
det.useVersion '9.0.43'
det.useVersion '9.0.50'
}

/*
Expand Down