Skip to content

Commit

Permalink
Merge pull request #99 from ministryofjustice/LCAM-1314
Browse files Browse the repository at this point in the history
LCAM-1314
  • Loading branch information
skasthuri36326 authored Apr 22, 2024
2 parents acad17b + 8fb65ca commit d3d9b30
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crime-evidence/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jacoco {

def versions = [
pitest : "1.16.0",
crimeCommonsClasses : "3.2.0",
commonsRestClient : "3.2.0",
crimeCommonsClasses : "3.4.0",
commonsRestClient : "3.4.0",
wmStubRunnerVersion : "4.1.2",
springDocWebMVCVersion: "2.5.0",
postgresqlVersion : "42.7.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
import reactor.core.publisher.Hooks;

@Slf4j
@SpringBootApplication
@ConfigurationPropertiesScan
@EnableAspectJAutoProxy(proxyTargetClass = true)
public class CrimeEvidenceApplication {
public static void main(String[] args) {
Hooks.enableAutomaticContextPropagation();
SpringApplication.run(CrimeEvidenceApplication.class, args);
}
}

0 comments on commit d3d9b30

Please sign in to comment.