Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 10 additions & 0 deletions argocd/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,16 @@
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
public class WebSecurityConfig {
@Bean
public WebSecurityCustomizer webSecurityCustomizer() {
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*");
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*", "/actuator/health");
}
}
6 changes: 5 additions & 1 deletion argocd/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,8 @@ togglz.feature-enums=com.publicissapient.kpidashboard.common.feature.FeatureEnum
togglz.console.use-management-port=false
togglz.console.enabled=true
togglz.console.path=/togglz-console
togglz.console.secured=false
togglz.console.secured=false

#Spring boot actuator properties
management.endpoints.web.exposure.include=health
management.endpoint.health.show-details=never
10 changes: 10 additions & 0 deletions azure-boards/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,16 @@
<artifactId>spring-boot-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ public class WebSecurityConfig {

@Bean
public WebSecurityCustomizer webSecurityCustomizer() {
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*");
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*", "/actuator/health");
}
}
6 changes: 5 additions & 1 deletion azure-boards/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,8 @@ togglz.feature-enums=com.publicissapient.kpidashboard.common.feature.FeatureEnum
togglz.console.use-management-port=false
togglz.console.enabled=true
togglz.console.path=/togglz-console
togglz.console.secured=false
togglz.console.secured=false

#Spring boot actuator properties
management.endpoints.web.exposure.include=health
management.endpoint.health.show-details=never
10 changes: 10 additions & 0 deletions azure-pipeline/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,16 @@
<artifactId>spring-core</artifactId>
<version>6.1.3</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
public class WebSecurityConfig {
@Bean
public WebSecurityCustomizer webSecurityCustomizer() {
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*");
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*", "/actuator/health");
}
}
6 changes: 5 additions & 1 deletion azure-pipeline/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,8 @@ togglz.feature-enums=com.publicissapient.kpidashboard.common.feature.FeatureEnum
togglz.console.use-management-port=false
togglz.console.enabled=true
togglz.console.path=/togglz-console
togglz.console.secured=false
togglz.console.secured=false

#Spring boot actuator properties
management.endpoints.web.exposure.include=health
management.endpoint.health.show-details=never
10 changes: 10 additions & 0 deletions azure-repo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,16 @@
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ public class WebSecurityConfig {

@Bean
public WebSecurityCustomizer webSecurityCustomizer() {
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*");
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*", "/actuator/health");
}
}
6 changes: 5 additions & 1 deletion azure-repo/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,8 @@ togglz.feature-enums=com.publicissapient.kpidashboard.common.feature.FeatureEnum
togglz.console.use-management-port=false
togglz.console.enabled=true
togglz.console.path=/togglz-console
togglz.console.secured=false
togglz.console.secured=false

#Spring boot actuator properties
management.endpoints.web.exposure.include=health
management.endpoint.health.show-details=never
10 changes: 10 additions & 0 deletions bamboo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,16 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ public class WebSecurityConfig {

@Bean
public WebSecurityCustomizer webSecurityCustomizer() {
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*");
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*", "/actuator/health");
}
}
6 changes: 5 additions & 1 deletion bamboo/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,8 @@ togglz.feature-enums=com.publicissapient.kpidashboard.common.feature.FeatureEnum
togglz.console.use-management-port=false
togglz.console.enabled=true
togglz.console.path=/togglz-console
togglz.console.secured=false
togglz.console.secured=false

#Spring boot actuator properties
management.endpoints.web.exposure.include=health
management.endpoint.health.show-details=never
10 changes: 10 additions & 0 deletions bitbucket/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,16 @@
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ public class WebSecurityConfig {

@Bean
public WebSecurityCustomizer webSecurityCustomizer() {
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*");
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*", "/actuator/health");
}
}
4 changes: 4 additions & 0 deletions bitbucket/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,7 @@ togglz.console.use-management-port=false
togglz.console.enabled=true
togglz.console.path=/togglz-console
togglz.console.secured=false

#Spring boot actuator properties
management.endpoints.web.exposure.include=health
management.endpoint.health.show-details=never
10 changes: 10 additions & 0 deletions github-action/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,16 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ public class WebSecurityConfig {

@Bean
public WebSecurityCustomizer webSecurityCustomizer() {
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*");
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*", "/actuator/health");
}
}
4 changes: 4 additions & 0 deletions github-action/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,7 @@ togglz.console.use-management-port=false
togglz.console.enabled=true
togglz.console.path=/togglz-console
togglz.console.secured=false

#Spring boot actuator properties
management.endpoints.web.exposure.include=health
management.endpoint.health.show-details=never
10 changes: 10 additions & 0 deletions github/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,16 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ public class WebSecurityConfig {

@Bean
public WebSecurityCustomizer webSecurityCustomizer() {
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*");
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*", "/actuator/health");
}
}
4 changes: 4 additions & 0 deletions github/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,7 @@ togglz.console.use-management-port=false
togglz.console.enabled=true
togglz.console.path=/togglz-console
togglz.console.secured=false

#Spring boot actuator properties
management.endpoints.web.exposure.include=health
management.endpoint.health.show-details=never
10 changes: 10 additions & 0 deletions gitlab/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,16 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
public class WebSecurityConfig {
@Bean
public WebSecurityCustomizer webSecurityCustomizer() {
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*");
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*", "/actuator/health");
}
}
3 changes: 3 additions & 0 deletions gitlab/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,6 @@ togglz.console.enabled=true
togglz.console.path=/togglz-console
togglz.console.secured=false

#Spring boot actuator properties
management.endpoints.web.exposure.include=health
management.endpoint.health.show-details=never
10 changes: 10 additions & 0 deletions jenkins/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,16 @@
<artifactId>spring-core</artifactId>
<version>6.1.3</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ public class WebSecurityConfig {
// TODO:Fix websecurity using new spring boot.
@Bean
public WebSecurityCustomizer webSecurityCustomizer() {
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*");
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*", "/actuator/health");
}
}
6 changes: 5 additions & 1 deletion jenkins/src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,8 @@ togglz.feature-enums=com.publicissapient.kpidashboard.common.feature.FeatureEnum
togglz.console.use-management-port=false
togglz.console.enabled=true
togglz.console.path=/togglz-console
togglz.console.secured=false
togglz.console.secured=false

#Spring boot actuator properties
management.endpoints.web.exposure.include=health
management.endpoint.health.show-details=never
10 changes: 10 additions & 0 deletions jira-xray-zephyr-squad/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,16 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<exclusions>
<exclusion>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Junit Dependencies start -->
<dependency>
<groupId>junit</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ public class WebSecurityConfig {
// TODO:Fix websecurity using new spring boot.
@Bean
public WebSecurityCustomizer webSecurityCustomizer() {
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*");
return web -> web.ignoring().requestMatchers("/processor/run", "/togglz-console/*", "/actuator/health");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,8 @@ jira.test.excludeLinks=cloned from,cloned to

#extra keyword to append for direct link to issue
jira.test.jiraDirectTicketLinkKey=browse/
jira.test.jiraCloudDirectTicketLinkKey=browse/
jira.test.jiraCloudDirectTicketLinkKey=browse/

#Spring boot actuator properties
management.endpoints.web.exposure.include=health
management.endpoint.health.show-details=never
Loading