aboutsummaryrefslogtreecommitdiffstats
path: root/store
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-11-17 03:06:39 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2021-11-17 03:06:39 +0100
commit720b9e2fb0968905e5a80f6099eab37554a6af58 (patch)
treeb471f4da129efbfa730830a70e0107de852833d7 /store
parentbuild: use version catalogs (diff)
downloadrefinery-720b9e2fb0968905e5a80f6099eab37554a6af58.tar.gz
refinery-720b9e2fb0968905e5a80f6099eab37554a6af58.tar.zst
refinery-720b9e2fb0968905e5a80f6099eab37554a6af58.zip
build: move scripts into script plugins
Script plugins allow applying other plugins from plugins { } blocks, which simplifies the build script.
Diffstat (limited to 'store')
-rw-r--r--store/build.gradle10
1 files changed, 6 insertions, 4 deletions
diff --git a/store/build.gradle b/store/build.gradle
index 0a5ba549..555c57be 100644
--- a/store/build.gradle
+++ b/store/build.gradle
@@ -1,7 +1,9 @@
1apply plugin: 'java-library' 1plugins {
2apply from: "${rootDir}/gradle/java-common.gradle" 2 id 'java-library'
3apply from: "${rootDir}/gradle/junit.gradle" 3 id 'tools.refinery.java-conventions'
4apply from: "${rootDir}/gradle/jmh.gradle" 4 id 'tools.refinery.junit-conventions'
5 id 'tools.refinery.jmh-conventions'
6}
5 7
6dependencies { 8dependencies {
7 implementation libs.ecore 9 implementation libs.ecore