Move versions file to gradle dir

This commit is contained in:
tzugen 2021-12-20 22:15:07 +01:00
parent 1eca5a756e
commit b958dcabe4
No known key found for this signature in database
GPG Key ID: 61E9C34BC10EC930
3 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ jobs:
- checkout
- restore_cache:
keys:
- v1-ultrasonic-{{ .Branch }}-{{ checksum "dependencies.gradle" }}
- v1-ultrasonic-{{ .Branch }}-{{ checksum "gradle/libs.versions.toml" }}
- v1-ultrasonic-{{ .Branch }}
- v1-ultrasonic
- run:
@ -44,7 +44,7 @@ jobs:
- save_cache:
paths:
- ~/.gradle
key: v1-ultrasonic-{{ .Branch }}-{{ checksum "dependencies.gradle" }}
key: v1-ultrasonic-{{ .Branch }}-{{ checksum "gradle/libs.versions.toml" }}
- store_artifacts:
path: ultrasonic/build/reports
destination: reports
@ -81,7 +81,7 @@ jobs:
- checkout
- restore_cache:
keys:
- v1-ultrasonic-{{ .Branch }}-{{ checksum "dependencies.gradle" }}
- v1-ultrasonic-{{ .Branch }}-{{ checksum "gradle/libs.versions.toml" }}
- v1-ultrasonic-{{ .Branch }}
- v1-ultrasonic
- run:

View File

@ -1,6 +1,6 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
apply from: 'dependencies.gradle'
apply from: 'gradle/versions.gradle'
ext.bootstrap = [
kotlinModule : "${project.rootDir}/gradle_scripts/kotlin-module-bootstrap.gradle",