Skip to content

Commit

Permalink
Upgrade to Spring Boot 3.2.1
Browse files Browse the repository at this point in the history
Closes gh-99
  • Loading branch information
snicoll committed Jan 13, 2024
1 parent 6bc29fe commit d91318f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.18</version>
<version>3.2.1</version>
<relativePath/>
</parent>
<groupId>io.spring.githubchangeloggenerator</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
import java.util.regex.Pattern;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.ConstructorBinding;
import org.springframework.boot.context.properties.bind.DefaultValue;
import org.springframework.util.Assert;

Expand All @@ -37,7 +36,6 @@
* @author Gary Russell
*/
@ConfigurationProperties(prefix = "changelog")
@ConstructorBinding
public class ApplicationProperties {

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2018-2020 the original author or authors.
* Copyright 2018-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -17,7 +17,6 @@
package io.spring.githubchangeloggenerator.github.service;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.ConstructorBinding;
import org.springframework.boot.context.properties.bind.DefaultValue;
import org.springframework.util.StringUtils;

Expand All @@ -28,7 +27,6 @@
* @author Madhura Bhave
*/
@ConfigurationProperties("github")
@ConstructorBinding
public class GitHubProperties {

/**
Expand Down

0 comments on commit d91318f

Please sign in to comment.