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

View File

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