Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 1.13 KB

gradle.md

File metadata and controls

21 lines (15 loc) · 1.13 KB

Common Gradle commands

Check for new version of dependencies

./gradlew refreshVersions

Checking for dependency resolution

./gradlew :apps:arcane-platform-app:dependencyInsight --configuration runtimeClasspath --dependency dependency-name

Update grraphql schema files

./gradlew :libs:clients:contentful-client:downloadApolloSchema --endpoint="https://graphql.contentful.com/content/v1/spaces/${INVEST_SPACE_ID}" --schema=libs/clients/contentful-client/src/main/httpx/invest/schema.graphqls --header="Authorization: Bearer ${INVEST_SPACE_TOKEN}"
./gradlew :libs:clients:contentful-client:downloadApolloSchema --endpoint="https://graphql.contentful.com/content/v1/spaces/${LEGAL_SPACE_ID}" --schema=libs/clients/contentful-client/src/main/httpx/legal/schema.graphqls --header="Authorization: Bearer ${LEGAL_SPACE_TOKEN}"
./gradlew :libs:clients:contentful-client:downloadApolloSchema --endpoint="https://graphql.contentful.com/content/v1/spaces/${RESEARCH_SPACE_ID}" --schema=libs/clients/contentful-client/src/main/httpx/research/schema.graphqls --header="Authorization: Bearer ${RESEARCH_SPACE_TOKEN}"