Skip to content

Commit

Permalink
This changes the assembly to create a simple list of `http client col…
Browse files Browse the repository at this point in the history
…lections` rather than a nested list. Makes it easier to use.
  • Loading branch information
dwolfson committed Feb 8, 2024
1 parent a6a2e04 commit 1ecab56
Showing 1 changed file with 32 additions and 29 deletions.
61 changes: 32 additions & 29 deletions open-metadata-distribution/omag-server-platform/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -357,13 +357,38 @@ distributions {
{
include 'Egeria*.http'
}
from { "$rootProject.projectDir/open-metadata-implementation" }
{
include 'admin-services/Egeria*.http'
include 'repository-services/Egeria*.http'
include 'platform-services/Egeria*.http'
include 'access-services/*/Egeria*.http'
}
from { "$rootProject.projectDir/open-metadata-implementation/admin-services" }
{ include 'Egeria*.http' }
from { "$rootProject.projectDir/open-metadata-implementation/repository-services" }
{ include 'Egeria*.http' }
from { "$rootProject.projectDir/open-metadata-implementation/platform-services" }
{ include 'Egeria*.http' }
from { "$rootProject.projectDir/open-metadata-implementation/access-services/asset-consumer" }
{ include 'Egeria*.http' }
from { "$rootProject.projectDir/open-metadata-implementation/access-services/asset-manager" }
{ include 'Egeria*.http' }
from { "$rootProject.projectDir/open-metadata-implementation/access-services/asset-owner" }
{ include 'Egeria*.http' }
from { "$rootProject.projectDir/open-metadata-implementation/access-services/data-manager" }
{ include 'Egeria*.http' }
from { "$rootProject.projectDir/open-metadata-implementation/access-services/digital-architecture" }
{ include 'Egeria*.http' }
from { "$rootProject.projectDir/open-metadata-implementation/access-services/discovery-engine" }
{ include 'Egeria*.http' }
from { "$rootProject.projectDir/open-metadata-implementation/access-services/governance-engine" }
{ include 'Egeria*.http' }
from { "$rootProject.projectDir/open-metadata-implementation/access-services/it-infrastructure" }
{ include 'Egeria*.http' }
from { "$rootProject.projectDir/open-metadata-implementation/access-services/subject-area" }
{ include 'Egeria*.http' }
from { "$rootProject.projectDir/open-metadata-implementation/framework-services/ocf-metadata-management" }
{ include 'Egeria*.http'}
from { "$rootProject.projectDir/open-metadata-implementation/framework-services/oif-metadata-management" }
{ include 'Egeria*.http' }
from { "$rootProject.projectDir/open-metadata-implementation/framework-services/gaf-metadata-management" }
{ include 'Egeria*.http' }
from { "$rootProject.projectDir/open-metadata-conformance-suite" }
{ include 'Egeria*.http' }
fileMode = 0755
}
into('assembly/opt/postman-collections/framework-services') {
Expand All @@ -381,35 +406,13 @@ distributions {
}
fileMode = 0755
}
into('assembly/opt/http-client-collections/framework-services') {
from { "$rootProject.projectDir/open-metadata-implementation/framework-services/ocf-metadata-management" }
{
include 'Egeria*.http'
}
from { "$rootProject.projectDir/open-metadata-implementation/framework-services/oif-metadata-management" }
{
include 'Egeria*.http'
}
from { "$rootProject.projectDir/open-metadata-implementation/framework-services/gaf-metadata-management" }
{
include 'Egeria*.http'
}
fileMode = 0755
}
into('assembly/opt/postman-collections/conformance-suite') {
from { "$rootProject.projectDir/open-metadata-conformance-suite" }
{
include 'Egeria*.json'
}
fileMode = 0755
}
into('assembly/opt/http-client-collections/conformance-suite') {
from { "$rootProject.projectDir/open-metadata-conformance-suite" }
{
include 'Egeria*.http'
}
fileMode = 0755
}
}
}
}
Expand Down

0 comments on commit 1ecab56

Please sign in to comment.