-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(build): add BOM modules * fix launcher test, dependencies * add missing config
- Loading branch information
1 parent
bb4e4dd
commit 10d9cd4
Showing
13 changed files
with
233 additions
and
39 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
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,46 @@ | ||
/* | ||
* Copyright (c) 2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Apache License, Version 2.0 which is available at | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* Contributors: | ||
* Bayerische Motoren Werke Aktiengesellschaft (BMW AG) - initial API and implementation | ||
* | ||
*/ | ||
|
||
plugins { | ||
`java-library` | ||
} | ||
|
||
dependencies { | ||
runtimeOnly(project(":core:presentation-api")) | ||
runtimeOnly(project(":core:identity-hub-did")) | ||
runtimeOnly(project(":core:identity-hub-core")) | ||
runtimeOnly(project(":core:identity-hub-participants")) | ||
runtimeOnly(project(":core:identity-hub-keypairs")) | ||
runtimeOnly(project(":extensions:did:local-did-publisher")) | ||
runtimeOnly(project(":extensions:common:credential-watchdog")) | ||
runtimeOnly(project(":extensions:sts:sts-account-provisioner")) | ||
runtimeOnly(project(":extensions:api:identity-api:did-api")) | ||
runtimeOnly(project(":extensions:api:identity-api:participant-context-api")) | ||
runtimeOnly(project(":extensions:api:identity-api:verifiable-credentials-api")) | ||
runtimeOnly(project(":extensions:api:identity-api:keypair-api")) | ||
runtimeOnly(project(":extensions:api:identity-api:api-configuration")) | ||
runtimeOnly(project(":extensions:api:identityhub-api-authentication")) | ||
runtimeOnly(project(":extensions:api:identityhub-api-authorization")) | ||
runtimeOnly(libs.edc.identity.did.core) | ||
runtimeOnly(libs.edc.core.token) | ||
runtimeOnly(libs.edc.api.version) | ||
|
||
runtimeOnly(libs.edc.identity.did.web) | ||
runtimeOnly(libs.edc.jsonld) | ||
runtimeOnly(libs.bundles.connector) | ||
} | ||
|
||
edcBuild { | ||
|
||
} |
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,26 @@ | ||
/* | ||
* Copyright (c) 2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Apache License, Version 2.0 which is available at | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* Contributors: | ||
* Bayerische Motoren Werke Aktiengesellschaft (BMW AG) - initial API and implementation | ||
* | ||
*/ | ||
|
||
plugins { | ||
`java-library` | ||
} | ||
|
||
dependencies { | ||
api(project(":dist:bom:identityhub-base-bom")) | ||
runtimeOnly(project(":extensions:sts:sts-account-service-remote")) | ||
} | ||
|
||
edcBuild { | ||
|
||
} |
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,10 @@ | ||
edc.ih.iam.id=did:web:test | ||
edc.ih.iam.publickey.path=/some/path/to/key.pem | ||
web.http.presentation.port=10001 | ||
web.http.presentation.path=/api/resolution | ||
web.http.identity.port=8080 | ||
web.http.identity.path=/api/identity | ||
web.http.port=8181 | ||
web.http.path=/api/v1/ | ||
edc.sts.account.api.url=https://sts.com/accounts | ||
edc.sts.accounts.api.auth.header.value=password |
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,34 @@ | ||
/* | ||
* Copyright (c) 2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Apache License, Version 2.0 which is available at | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* Contributors: | ||
* Bayerische Motoren Werke Aktiengesellschaft (BMW AG) - initial API and implementation | ||
* | ||
*/ | ||
|
||
plugins { | ||
`java-library` | ||
} | ||
|
||
dependencies { | ||
|
||
// sql modules | ||
api(project(":extensions:store:sql:identity-hub-credentials-store-sql")) | ||
api(project(":extensions:store:sql:identity-hub-did-store-sql")) | ||
api(project(":extensions:store:sql:identity-hub-keypair-store-sql")) | ||
api(project(":extensions:store:sql:identity-hub-participantcontext-store-sql")) | ||
|
||
api(libs.edc.sql.core) | ||
api(libs.edc.sql.pool) | ||
api(libs.edc.sql.transactionlocal) | ||
api(libs.edc.sql.bootstrapper) | ||
|
||
// third-party deps | ||
api(libs.postgres) | ||
} |
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,28 @@ | ||
/* | ||
* Copyright (c) 2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Apache License, Version 2.0 which is available at | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* Contributors: | ||
* Bayerische Motoren Werke Aktiengesellschaft (BMW AG) - initial API and implementation | ||
* | ||
*/ | ||
|
||
plugins { | ||
`java-library` | ||
} | ||
|
||
dependencies { | ||
|
||
// sql modules | ||
api(project(":dist:bom:identityhub-feature-sql-bom")) | ||
api(libs.edc.sql.ih.stsstore.sql) | ||
|
||
|
||
// third-party deps | ||
api(libs.postgres) | ||
} |
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,30 @@ | ||
/* | ||
* Copyright (c) 2024 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Apache License, Version 2.0 which is available at | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* Contributors: | ||
* Bayerische Motoren Werke Aktiengesellschaft (BMW AG) - initial API and implementation | ||
* | ||
*/ | ||
|
||
plugins { | ||
`java-library` | ||
} | ||
|
||
dependencies { | ||
api(project(":dist:bom:identityhub-base-bom")) | ||
runtimeOnly(project(":extensions:sts:sts-account-service-local")) | ||
runtimeOnly(libs.edc.sts.core) | ||
runtimeOnly(libs.edc.sts) | ||
runtimeOnly(libs.edc.sts.api) | ||
runtimeOnly(libs.edc.sts.api.accounts) | ||
} | ||
|
||
edcBuild { | ||
|
||
} |
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,13 @@ | ||
edc.ih.iam.id=did:web:test | ||
edc.ih.iam.publickey.path=/some/path/to/key.pem | ||
web.http.presentation.port=10001 | ||
web.http.presentation.path=/api/resolution | ||
web.http.identity.port=8080 | ||
web.http.identity.path=/api/identity | ||
web.http.port=8181 | ||
web.http.path=/api/v1/ | ||
web.http.sts.port=8090 | ||
web.http.sts.path=/api/sts | ||
web.http.accounts.port=8091 | ||
web.http.accounts.path=/api/accounts | ||
edc.api.accounts.key=some-auth-key |
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
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