Skip to content

Commit 797062c

Browse files
Merge pull request #18536 from hmdrzsharifi/BAEL-9224
Bael-9224: Publishing SSL Bundle Metrics in Spring Boot Actuator
2 parents f21488b + 49a06f9 commit 797062c

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

spring-boot-modules/spring-boot-simple/pom.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.springframework.boot</groupId>
1414
<artifactId>spring-boot-starter-parent</artifactId>
15-
<version>3.4.0</version>
15+
<version>3.5.0-M1</version>
1616
<relativePath/>
1717
</parent>
1818

@@ -110,6 +110,7 @@
110110
<plugin>
111111
<groupId>org.springframework.boot</groupId>
112112
<artifactId>spring-boot-maven-plugin</artifactId>
113+
<version>3.3.2</version>
113114
</plugin>
114115
</plugins>
115116
</build>
@@ -119,4 +120,12 @@
119120
<subethasmtp.version>7.0.2</subethasmtp.version>
120121
</properties>
121122

123+
<repositories>
124+
<repository>
125+
<id>repository.spring.milestones</id>
126+
<name>Spring Milestones Repository</name>
127+
<url>https://repo.spring.io/milestone/</url>
128+
</repository>
129+
</repositories>
130+
122131
</project>

spring-boot-modules/spring-boot-simple/src/main/resources/application.properties

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,10 @@ spring.jpa.properties.hibernate.globally_quoted_identifiers=true
2424

2525
logging.file.name=logs/app.log
2626
logging.file.path=logs
27+
28+
spring.ssl.bundle.jks.server.keystore.location=classpath:ssl/baeldung.p12
29+
spring.ssl.bundle.jks.server.keystore.password=password
30+
spring.ssl.bundle.jks.server.keystore.type=PKCS12
31+
32+
server.ssl.bundle=server
33+
server.ssl.enabled=false
Binary file not shown.

0 commit comments

Comments
 (0)