Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 1.19 KB

gradle.md

File metadata and controls

23 lines (15 loc) · 1.19 KB

Common Gradle commands

Check for new version of dependencies

./gradlew refreshVersions

Checking for dependency resolution

./gradlew :apps:k33-backend:dependencyInsight --configuration runtimeClasspath --dependency dependency-name

Update grraphql schema files

./gradlew :libs:clients:contentful-client:downloadApolloSchema --endpoint="https://graphql.contentful.com/content/v1/spaces/${CONTENTFUL_INVEST_SPACE_ID}" --schema=libs/clients/contentful-client/src/main/httpx/invest/schema.graphqls --header="Authorization: Bearer ${CONTENTFUL_INVEST_SPACE_TOKEN}"

./gradlew :libs:clients:contentful-client:downloadApolloSchema --endpoint="https://graphql.contentful.com/content/v1/spaces/${CONTENTFUL_LEGAL_SPACE_ID}" --schema=libs/clients/contentful-client/src/main/httpx/legal/schema.graphqls --header="Authorization: Bearer ${CONTENTFUL_LEGAL_SPACE_TOKEN}"

./gradlew :libs:clients:contentful-client:downloadApolloSchema --endpoint="https://graphql.contentful.com/content/v1/spaces/${CONTENTFUL_RESEARCH_SPACE_ID}" --schema=libs/clients/contentful-client/src/main/httpx/research/schema.graphqls --header="Authorization: Bearer ${CONTENTFUL_RESEARCH_SPACE_TOKEN}"