Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into 3824-document-support…
Browse files Browse the repository at this point in the history
…-for-idp-connectors
  • Loading branch information
reiballa committed Jan 8, 2025
2 parents 1cdb6a7 + 2fcec35 commit a89706d
Show file tree
Hide file tree
Showing 52 changed files with 2,679 additions and 151 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
logging.level.root: info
logging.level.io.camunda.process.test: info

logging.level.org.testcontainers: warn
logging.level.tc: warn

logging.level.io.camunda.connector: debug
logging.level.root:info
logging.level.io.camunda.process.test:info
logging.level.org.testcontainers:warn
logging.level.tc:warn
logging.level.io.camunda.connector:debug
camunda.rest.query.enabled=true
io.camunda.process.test.camunda-env-vars.CAMUNDA_DATABASE_URL=http://elasticsearch:9200
4 changes: 4 additions & 0 deletions bundle/default-bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@
<groupId>io.camunda.connector</groupId>
<artifactId>connector-aws-textract</artifactId>
</dependency>
<dependency>
<groupId>io.camunda.connector</groupId>
<artifactId>connector-box</artifactId>
</dependency>
<dependency>
<groupId>io.camunda.connector</groupId>
<artifactId>connector-google-drive</artifactId>
Expand Down
5 changes: 5 additions & 0 deletions bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@
<artifactId>connector-aws-sns</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.camunda.connector</groupId>
<artifactId>connector-box</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.camunda.connector</groupId>
<artifactId>connector-aws-textract</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
# test secret property
secrets.test.secret=test secret value


logging.level.root: info
logging.level.io.camunda.process.test: info

logging.level.org.testcontainers: warn
logging.level.tc: warn

logging.level.io.camunda.connector: debug
logging.level.root:info
logging.level.io.camunda.process.test:info
logging.level.org.testcontainers:warn
logging.level.tc:warn
logging.level.io.camunda.connector:debug
camunda.rest.query.enabled=true
io.camunda.process.test.camunda-env-vars.CAMUNDA_DATABASE_URL=http://elasticsearch:9200
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,10 @@ public void clear() {
documents.clear();
}

public Map<String, byte[]> getDocuments() {
return documents;
}

public void logWarning() {
LOGGER.warning(
"In-memory document store is used. This store is not suitable for production use.");
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
logging.level.root=info
logging.level.io.camunda.process.test=info

logging.level.org.testcontainers=warn
logging.level.tc=warn

logging.level.io.camunda.connector=debug

camunda.rest.query.enabled=true
io.camunda.process.test.camundaVersion: 8.7.0-alpha2
io.camunda.process.test.camundaVersion=8.7.0-alpha2
io.camunda.process.test.camunda-env-vars.CAMUNDA_DATABASE_URL=http://elasticsearch:9200
5 changes: 5 additions & 0 deletions connectors/box/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH under one or more contributor license agreements and licensed to you under a proprietary license.
You may not use this file except in compliance with the proprietary license.
The proprietary license can be either the Camunda Self-Managed Free Edition license (available on Camunda’s website) or the Camunda Self-Managed Enterprise Edition license (a copy you obtain when you contact Camunda).
The Camunda Self-Managed Free Edition comes for free but only allows for usage of the software (file) in non-production environments.
If you want to use the software (file) in production, you need to purchase the Camunda Self-Managed Enterprise Edition.
Loading

0 comments on commit a89706d

Please sign in to comment.