SOLR-5022: Make the Maven build also automatically populate the tests.disableHdfs property by a build profile. Otherwise the maven build fails by default on Windows.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1501678 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2013-07-10 08:51:17 +00:00
parent b3acba47e7
commit 46e83f7e60
1 changed files with 11 additions and 0 deletions

View File

@ -190,4 +190,15 @@
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>windows-tests-disableHdfs</id>
<activation>
<os><family>windows</family></os>
</activation>
<properties>
<tests.disableHdfs>true</tests.disableHdfs>
</properties>
</profile>
</profiles>
</project>