Move versions file to gradle dir
This commit is contained in:
parent
1eca5a756e
commit
b958dcabe4
|
@ -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:
|
||||||
|
|
|
@ -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",
|
||||||
|
|
Loading…
Reference in New Issue