mirror of https://github.com/apache/lucene.git
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:
parent
b3acba47e7
commit
46e83f7e60
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue