-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
25 lines (22 loc) · 759 Bytes
/
build.gradle
File metadata and controls
25 lines (22 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
plugins {
id 'org.openrewrite.rewrite' version 'latest.release'
}
rewrite {
activeRecipe(
// Prethink context currently doesn't appear to support libraries
// 'org.openrewrite.prethink.UpdatePrethinkContext',
// The following recipes can be found in ./rewrite.yml
'io.github.scuba10steve.s3.BestPractices',
'io.github.scuba10steve.s3.DependencyUpgrade',
)
setExportDatatables(true)
}
repositories {
mavenCentral()
}
dependencies {
rewrite platform('org.openrewrite.recipe:rewrite-recipe-bom:latest.release')
rewrite("org.openrewrite.recipe:rewrite-prethink")
rewrite("org.openrewrite.recipe:rewrite-testing-frameworks")
rewrite("org.openrewrite.recipe:rewrite-static-analysis")
}