File tree Expand file tree Collapse file tree 1 file changed +26
-1
lines changed Expand file tree Collapse file tree 1 file changed +26
-1
lines changed Original file line number Diff line number Diff line change 30
30
</dependency >
31
31
</dependencies >
32
32
33
+ <profiles >
34
+ <profile >
35
+ <id >Windows</id >
36
+ <activation >
37
+ <os >
38
+ <family >Windows</family >
39
+ </os >
40
+ </activation >
41
+ <properties >
42
+ <gradleScript >.\gradlew.bat</gradleScript >
43
+ </properties >
44
+ </profile >
45
+ <profile >
46
+ <id >unix</id >
47
+ <activation >
48
+ <os >
49
+ <family >unix</family >
50
+ </os >
51
+ </activation >
52
+ <properties >
53
+ <gradleScript >./gradlew</gradleScript >
54
+ </properties >
55
+ </profile >
56
+ </profiles >
57
+
33
58
<build >
34
59
<plugins >
35
60
<!-- Runs the gradle managed build which will produce all artifacts -->
46
71
</execution >
47
72
</executions >
48
73
<configuration >
49
- <executable >./gradlew </executable >
74
+ <executable >${gradleScript} </executable >
50
75
<arguments >
51
76
<argument >build</argument >
52
77
</arguments >
You can’t perform that action at this time.
0 commit comments