Skip to content

Commit

Permalink
Merge pull request #29 from logchange/fix-missing-bean
Browse files Browse the repository at this point in the history
fix missing bean of type HofundDefaultGitInfoProperties
  • Loading branch information
marwin1991 committed Feb 22, 2024
2 parents c6fa296 + db6a350 commit 1f1a33b
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 8 deletions.
8 changes: 8 additions & 0 deletions changelog/unreleased/000001-fix-missing-bean.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
title: Fixed problem with missing bean of type `HofundDefaultGitInfoProperties`.
authors:
- name: Peter Zmilczak
nick: marwin1991
url: https://github.com/marwin1991
type: fixed #[added/changed/deprecated/removed/fixed/security/other]
merge_requests:
- 29
2 changes: 1 addition & 1 deletion hofund-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>dev.logchange.hofund</groupId>
<artifactId>hofund</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>hofund-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion hofund-spring-boot-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>dev.logchange.hofund</groupId>
<artifactId>hofund</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>hofund-spring-boot-autoconfigure</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
import lombok.Getter;
import lombok.RequiredArgsConstructor;
import lombok.Setter;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.PropertySource;
import org.springframework.core.env.Environment;
import org.springframework.stereotype.Component;

@Getter
@Setter
@Component
@Configuration
@PropertySource(value = "git.properties", ignoreResourceNotFound = true)
@RequiredArgsConstructor
public class HofundDefaultGitInfoProperties {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
dev.logchange.hofund.info.springboot.autoconfigure.HofundInfoAutoConfiguration,\
dev.logchange.hofund.git.springboot.autoconfigure.HofundGitInfoAutoConfiguration,\
dev.logchange.hofund.git.springboot.autoconfigure.HofundDefaultGitInfoProperties,\
dev.logchange.hofund.connection.springboot.autoconfigure.HofundConnectionAutoConfiguration,\
dev.logchange.hofund.graph.springboot.autoconfigure.HofundGraphAutoConfiguration,\
dev.logchange.hofund.java.springboot.autoconfigure.HofundJavaInfoAutoConfiguration,\
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
dev.logchange.hofund.info.springboot.autoconfigure.HofundInfoAutoConfiguration
dev.logchange.hofund.git.springboot.autoconfigure.HofundGitInfoAutoConfiguration
dev.logchange.hofund.git.springboot.autoconfigure.HofundDefaultGitInfoProperties
dev.logchange.hofund.connection.springboot.autoconfigure.HofundConnectionAutoConfiguration
dev.logchange.hofund.graph.springboot.autoconfigure.HofundGraphAutoConfiguration
dev.logchange.hofund.java.springboot.autoconfigure.HofundJavaInfoAutoConfiguration
Expand Down
2 changes: 1 addition & 1 deletion hofund-spring-boot-e2e/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>hofund</artifactId>
<groupId>dev.logchange.hofund</groupId>
<version>1.1.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion hofund-spring-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<artifactId>hofund</artifactId>
<groupId>dev.logchange.hofund</groupId>
<version>1.1.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion hofund-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>dev.logchange.hofund</groupId>
<artifactId>hofund</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
</parent>

<artifactId>hofund-spring</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>dev.logchange.hofund</groupId>
<artifactId>hofund</artifactId>
<version>1.1.0-SNAPSHOT</version>
<version>1.0.1-SNAPSHOT</version>
<packaging>pom</packaging>

<name>hofund</name>
Expand Down

0 comments on commit 1f1a33b

Please sign in to comment.