-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: use spring-boot-3-style autoconfiguration
- Loading branch information
1 parent
b8b1397
commit 5c412d4
Showing
7 changed files
with
22 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 13 additions & 7 deletions
20
bundle/default-bundle/src/main/resources/application.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
|
||
server.port=9898 | ||
zeebe.broker.gateway-address=localhost:26500 | ||
zeebe.client.security.plaintext=true | ||
|
||
camunda.connector.polling.enabled=true | ||
camunda.connector.polling.interval=5000 | ||
|
||
camunda.connector.webhook.enabled=true | ||
#spring.main.web-application-type=none | ||
|
||
# uncomment to activate inbound and adjust operate config if necessary | ||
#operate.client.enabled=true | ||
operate.client.enabled=true | ||
# Operate config for use with docker-compose-core.yml | ||
#camunda.operate.client.url=http://localhost:8081 | ||
#camunda.operate.client.username=demo | ||
#camunda.operate.client.password=demo | ||
#camunda.connector.webhook.enabled=true | ||
camunda.operate.client.url=http://localhost:8081 | ||
camunda.operate.client.username=demo | ||
camunda.operate.client.password=demo | ||
camunda.connector.webhook.enabled=true | ||
|
||
logging.level.io.camunda.connector=trace | ||
debug=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
...esources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
io.camunda.connector.runtime.ConnectorsAutoConfiguration |