-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DTSAM-357 Remove unused tasks left over from CCD Data Migration (#966)
* DTSAM-357 Remove unused tasks from CCD migration [DTSAM-357](https://tools.hmcts.net/jira/browse/DTSAM-357) Remove unused tasks left over from the CCD data migration. * DTSAM-357 Remove LaunchDarkly [DTSAM-357](https://tools.hmcts.net/jira/browse/DTSAM-357) Remove LaunchDarkly as no longer in use in this repo. * DTSAM-357 Refactor unit tests [DTSAM-357](https://tools.hmcts.net/jira/browse/DTSAM-357) Refactor unit tests. * Bumping chart version/ fixing aliases * DTSAM-357 Refactor EmailServiceImpl [DTSAM-357](https://tools.hmcts.net/jira/browse/DTSAM-357) Refactor EmailServiceImpl after Sonar warnings. * DTSAM-357 Move Flyway to Integration Tests. [DTSAM-357](https://tools.hmcts.net/jira/browse/DTSAM-357) Move Flyway to Integration Tests: as not required for main code. * DTSAM-357 Use WithSpan annotation on tasks. [DTSAM-357](https://tools.hmcts.net/jira/browse/DTSAM-357) Use WithSpan annotation on remaining tasks to group AppInsight logs. * DTSAM-357 Refactor unit tests [DTSAM-357](https://tools.hmcts.net/jira/browse/DTSAM-357) Refactor unit tests: move RoleAssignmentHistoryTest. * DTSAM-357 Refactor tasks for Sonar issue [DTSAM-357](https://tools.hmcts.net/jira/browse/DTSAM-357) Refactor tasks for Sonar issue. * DTSAM-357 Remove tomcat dependency from job [DTSAM-357](https://tools.hmcts.net/jira/browse/DTSAM-357) Remove tomcat dependency from job: as no webservice in use. * DTSAM-357 Refactor integration tests [DTSAM-357](https://tools.hmcts.net/jira/browse/DTSAM-357) Refactor integration tests. * Bumping chart version/ fixing aliases * Add sonar labels to readme --------- Co-authored-by: hmcts-jenkins-a-to-c <62422075+hmcts-jenkins-a-to-c[bot]@users.noreply.github.com> Co-authored-by: mikebrownccd <104495891+mikebrownccd@users.noreply.github.com>
- Loading branch information
1 parent
388ac90
commit 85ab735
Showing
70 changed files
with
427 additions
and
4,064 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
30 changes: 0 additions & 30 deletions
30
src/main/java/uk/gov/hmcts/reform/roleassignmentbatch/ApplicationParams.java
This file was deleted.
Oops, something went wrong.
28 changes: 28 additions & 0 deletions
28
src/main/java/uk/gov/hmcts/reform/roleassignmentbatch/config/AppConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package uk.gov.hmcts.reform.roleassignmentbatch.config; | ||
|
||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.context.support.PropertySourcesPlaceholderConfigurer; | ||
import org.springframework.core.convert.ConversionService; | ||
import org.springframework.core.convert.support.DefaultConversionService; | ||
import org.thymeleaf.ITemplateEngine; | ||
import org.thymeleaf.spring5.SpringTemplateEngine; | ||
|
||
@Configuration | ||
public class AppConfiguration { | ||
|
||
@Bean | ||
public static PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() { | ||
return new PropertySourcesPlaceholderConfigurer(); | ||
} | ||
|
||
@Bean public ConversionService conversionService() { | ||
return new DefaultConversionService(); | ||
} | ||
|
||
@Bean | ||
public ITemplateEngine springTemplateEngine() { | ||
return new SpringTemplateEngine(); | ||
} | ||
|
||
} |
55 changes: 0 additions & 55 deletions
55
src/main/java/uk/gov/hmcts/reform/roleassignmentbatch/config/AuditSkipListener.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.