Skip to content

Commit

Permalink
Make DatabaseConfigSourceConfig public
Browse files Browse the repository at this point in the history
Fixes:

```
java.lang.IllegalAccessError: interface io.smallrye.config.validator.BeanValidationConfigValidator cannot access a member of interface org.dependencytrack.config.DatabaseConfigSourceConfig with modifiers "public abstract"
```

Signed-off-by: nscuro <[email protected]>
  • Loading branch information
nscuro committed Feb 17, 2025
1 parent 4cc30dc commit a148b86
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

@ConfigMapping(prefix = "quarkus.config.source.dtrack.database")
@ConfigRoot(phase = ConfigPhase.RUN_TIME)
interface DatabaseConfigSourceConfig {
public interface DatabaseConfigSourceConfig {

/**
* Whether the database configuration source shall be enabled.
Expand Down

0 comments on commit a148b86

Please sign in to comment.