File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ subprojects {
114
114
approvedLicenses << ' Apache'
115
115
}
116
116
117
- String outputDir = " generated-resources/${ project.name} "
117
+ String outputDir = " ${ buildDir } / generated-resources/${ project.name} "
118
118
119
119
// This is a top level task which we will add dependencies to below.
120
120
// It is a single task that can be used to backcompat tests against all versions.
@@ -123,7 +123,7 @@ subprojects {
123
123
group = ' verification'
124
124
}
125
125
126
- String output = " generated-resources/${ project.name} "
126
+ String output = " ${ buildDir } / generated-resources/${ project.name} "
127
127
task copyTestNodeKeystore(type : Copy ) {
128
128
from project(xpackModule(' core' ))
129
129
.file(' src/test/resources/org/elasticsearch/xpack/security/transport/ssl/certs/simple/testnode.jks' )
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ subprojects {
92
92
}
93
93
}
94
94
95
- String outputDir = " generated-resources/${ project.name} "
95
+ String outputDir = " ${ buildDir } / generated-resources/${ project.name} "
96
96
97
97
// This is a top level task which we will add dependencies to below.
98
98
// It is a single task that can be used to backcompat tests against all versions.
@@ -101,7 +101,7 @@ subprojects {
101
101
group = ' verification'
102
102
}
103
103
104
- String output = " generated-resources/${ project.name} "
104
+ String output = " ${ buildDir } / generated-resources/${ project.name} "
105
105
task copyTestNodeKeystore(type : Copy ) {
106
106
from project(xpackModule(' core' ))
107
107
.file(' src/test/resources/org/elasticsearch/xpack/security/transport/ssl/certs/simple/testnode.jks' )
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ dependencies {
6
6
testCompile project(path : xpackProject(' transport-client' ). path, configuration : ' runtime' )
7
7
}
8
8
9
- String outputDir = " generated-resources/${ project.name} "
9
+ String outputDir = " ${ buildDir } / generated-resources/${ project.name} "
10
10
task copyXPackPluginProps (type : Copy ) {
11
11
from project(xpackModule(' core' )). file(' src/main/plugin-metadata' )
12
12
from project(xpackModule(' core' )). tasks. pluginProperties
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ dependencies {
17
17
testCompile project(path : xpackModule(' core' ), configuration : ' runtime' )
18
18
}
19
19
20
- String outputDir = " generated-resources/${ project.name} "
20
+ String outputDir = " ${ buildDir } / generated-resources/${ project.name} "
21
21
task copyXPackPluginProps (type : Copy ) {
22
22
from project(xpackModule(' core' )). file(' src/main/plugin-metadata' )
23
23
from project(xpackModule(' core' )). tasks. pluginProperties
You can’t perform that action at this time.
0 commit comments