We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22be7f6 commit 3433832Copy full SHA for 3433832
opengrok-web/pom.xml
@@ -290,4 +290,28 @@ Portions Copyright (c) 2018, 2020, Chris Fraire <[email protected]>.
290
</pluginRepository>
291
</pluginRepositories>
292
293
+ <profiles>
294
+ <profile>
295
+ <id>Windows environment</id>
296
+ <activation>
297
+ <os>
298
+ <family>Windows</family>
299
+ </os>
300
+ </activation>
301
+ <build>
302
+ <plugins>
303
+ <plugin>
304
+ <groupId>org.apache.maven.plugins</groupId>
305
+ <artifactId>maven-surefire-plugin</artifactId>
306
+ <configuration>
307
+ <excludes>
308
+ <exclude>**/ProjectsControllerTest.java</exclude>
309
+ </excludes>
310
+ </configuration>
311
+ </plugin>
312
+ </plugins>
313
+ </build>
314
+ </profile>
315
+ </profiles>
316
+
317
</project>
0 commit comments