Skip to content

Commit

Permalink
Merge pull request #146 from Apicurio/add-category-app
Browse files Browse the repository at this point in the history
Add category to app properties
  • Loading branch information
carlesarnal committed Mar 19, 2024
2 parents d685a26 + bacb609 commit 66aedfe
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apicurio.date=28/01/2022
apicurio.description=Integration Tests
apicurio.version=1
apicurio.name=TestApp
apicurio.multitenancy.reaper.every=5
apicurio.app.date=28/01/2022
apicurio.app.description=Integration Tests
apicurio.app.version=1
apicurio.app.name=TestApp

quarkus.keycloak.devservices.enabled=false
quarkus.oidc.enabled=false

Expand Down
8 changes: 4 additions & 4 deletions core/src/main/java/io/apicurio/common/apps/core/System.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,19 @@
public class System {

@Inject
@ConfigProperty(name = "apicurio.name")
@ConfigProperty(name = "apicurio.app.name")
String name;

@Inject
@ConfigProperty(name = "apicurio.description")
@ConfigProperty(name = "apicurio.app.description")
String description;

@Inject
@ConfigProperty(name = "apicurio.version")
@ConfigProperty(name = "apicurio.app.version")
String version;

@Inject
@ConfigProperty(name = "apicurio.date")
@ConfigProperty(name = "apicurio.app.date")
String date;

public String getName() {
Expand Down

0 comments on commit 66aedfe

Please sign in to comment.