Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/parallel-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
strategy:
fail-fast: false
matrix:
module: [ customer-bill-management, customer-management, party-catalog, party-role, product-catalog, product-inventory, product-ordering-management, resource-catalog, resource-function-activation, resource-inventory, service-catalog, usage-management, service-inventory, agreement, account, quote ]
module: [ customer-bill-management, customer-management, document-management, party-catalog, party-role, product-catalog, product-inventory, product-ordering-management, resource-catalog, resource-function-activation, resource-inventory, service-catalog, usage-management, service-inventory, agreement, account, quote ]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-brokers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
strategy:
fail-fast: false
matrix:
module: [ customer-bill-management, customer-management, party-catalog, party-role, product-catalog, product-inventory, product-ordering-management, resource-catalog, resource-function-activation, resource-inventory, service-catalog, service-inventory, quote ]
module: [ customer-bill-management, customer-management, document-management, party-catalog, party-role, product-catalog, product-inventory, product-ordering-management, resource-catalog, resource-function-activation, resource-inventory, service-catalog, service-inventory, quote ]
# only test scorpio for speed up, orion is currently not really used with the tmforum
broker: [ scorpio, orion-ld ]
cache: [ in-memory, redis ]
Expand Down
19 changes: 19 additions & 0 deletions all-in-one/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@
<version>${project.version}</version>
</dependency>

<!-- MinIO SDK for S3 operations (document-management) -->
<dependency>
<groupId>io.minio</groupId>
<artifactId>minio</artifactId>
<version>8.5.7</version>
</dependency>

<!-- lazy dev -->
<dependency>
<groupId>org.projectlombok</groupId>
Expand Down Expand Up @@ -176,6 +183,7 @@
<source>${project.parent.basedir}/service-catalog/src/main/java</source>
<source>${project.parent.basedir}/service-inventory/src/main/java</source>
<source>${project.parent.basedir}/usage-management/src/main/java</source>
<source>${project.parent.basedir}/document-management/src/main/java</source>
</sources>
</configuration>
</execution>
Expand Down Expand Up @@ -368,6 +376,17 @@
<modelPackage>org.fiware.usagemanagement.model</modelPackage>
</configuration>
</execution>
<execution>
<id>document-management</id>
<phase>generate-sources</phase>
<goals><goal>generate</goal></goals>
<configuration>
<skip>false</skip>
<inputSpec>${project.parent.basedir}/api/tm-forum/document-management/api.json</inputSpec>
<apiPackage>org.fiware.document.api</apiPackage>
<modelPackage>org.fiware.document.model</modelPackage>
</configuration>
</execution>
<!-- customer-bill-management extension APIs (models already generated above) -->
<execution>
<id>customer-bill-management-ext-applied</id>
Expand Down
13 changes: 12 additions & 1 deletion all-in-one/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,15 @@ api:
service-inventory:
basepath: /tmf-api/serviceInventoryManagement/v4
usage-management:
basepath: /tmf-api/usageManagement/v4
basepath: /tmf-api/usageManagement/v4
document-management:
basepath: /tmf-api/documentManagement/v4

---
s3:
endpoint: "http://localhost:9000"
accessKey: "minioadmin"
secretKey: "minioadmin"
bucket: "document-attachments"
maxContentSize: 10485760
# region: "" # Required for AWS S3; omit for MinIO, IONOS, and other providers
Loading
Loading