File tree 2 files changed +50
-1
lines changed
extensions/kubernetes-service-binding/runtime
2 files changed +50
-1
lines changed Original file line number Diff line number Diff line change @@ -252,7 +252,6 @@ If you have not done so on this machine, you need to:
252
252
* Windows:
253
253
* enable longpaths: ` git config --global core.longpaths true `
254
254
* avoid CRLF breaks: ` git config --global core.autocrlf false `
255
- * enable symlinks: ` git config --global core.symlinks true `
256
255
* Install Java SDK 17+ (OpenJDK recommended)
257
256
* Install [ GraalVM] ( https://quarkus.io/guides/building-native-image )
258
257
* Install platform C developer tools:
Original file line number Diff line number Diff line change 67
67
</plugins >
68
68
</build >
69
69
70
+ <profiles >
71
+ <profile >
72
+ <id >disable-test-compile-on-windows</id >
73
+ <activation >
74
+ <os >
75
+ <family >windows</family >
76
+ </os >
77
+ </activation >
78
+ <build >
79
+ <plugins >
80
+ <plugin >
81
+ <artifactId >maven-compiler-plugin</artifactId >
82
+ <executions >
83
+ <execution >
84
+ <id >default-testCompile</id >
85
+ <phase >test-compile</phase >
86
+ <goals >
87
+ <goal >testCompile</goal >
88
+ </goals >
89
+ <configuration >
90
+ <skip >true</skip >
91
+ </configuration >
92
+ </execution >
93
+ </executions >
94
+ </plugin >
95
+ <plugin >
96
+ <artifactId >maven-resources-plugin</artifactId >
97
+ <executions >
98
+ <execution >
99
+ <id >default-testResources</id >
100
+ <phase >test-resources</phase >
101
+ <goals >
102
+ <goal >testResources</goal >
103
+ </goals >
104
+ <configuration >
105
+ <skip >true</skip >
106
+ </configuration >
107
+ </execution >
108
+ </executions >
109
+ </plugin >
110
+ <plugin >
111
+ <artifactId >maven-surefire-plugin</artifactId >
112
+ <configuration >
113
+ <skip >true</skip >
114
+ </configuration >
115
+ </plugin >
116
+ </plugins >
117
+ </build >
118
+ </profile >
119
+ </profiles >
70
120
71
121
</project >
You can’t perform that action at this time.
0 commit comments