Skip to content

Commit 8ea47e6

Browse files
author
Alexander Litus
committed
Fix gradle plugin path.
1 parent e2f8900 commit 8ea47e6

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@ project.ext {
88
SLF4J_VERSION = '1.7.21'
99

1010
SPINE_PROTOBUF_PLUGIN_ID = 'org.spine3.tools.protobuf-plugin'
11-
TEST_ARTIFACTS_PLUGIN_PATH = '../gradle/plugins/test-artifacts.gradle'
12-
GEN_DESCRIPTOR_SET_PLUGIN_PATH = '../gradle/plugins/generate-descriptor-set.gradle'
13-
GRPC_PLUGIN_PATH = '../gradle/plugins/grpc.gradle'
14-
PUBLISH_PLUGIN_PATH = '/gradle/plugins/publish.gradle' // is applied from the root script
11+
PUBLISH_PLUGIN_PATH = "$projectDir/gradle/plugins/publish.gradle"
1512

1613
CREDENTIALS_FILE_PATH = 'credentials.properties'
1714
PROJECTS_TO_PUBLISH = ["client", "server", "values", "testutil"]
@@ -69,6 +66,10 @@ subprojects {
6966
GEN_TEST_GRPC_DIR = "$GEN_DIR/test/grpc"
7067

7168
GEN_MAIN_SPINE_DIR = "$GEN_DIR/main/spine"
69+
70+
TEST_ARTIFACTS_PLUGIN_PATH = '../gradle/plugins/test-artifacts.gradle'
71+
GEN_DESCRIPTOR_SET_PLUGIN_PATH = '../gradle/plugins/generate-descriptor-set.gradle'
72+
GRPC_PLUGIN_PATH = '../gradle/plugins/grpc.gradle'
7273
}
7374

7475
repositories {

0 commit comments

Comments
 (0)