no need for the mvn repository anymore
This commit is contained in:
parent
464037e0c1
commit
ffe3537285
27
pom.xml
27
pom.xml
|
@ -38,14 +38,6 @@
|
||||||
<es.logger.level>INFO</es.logger.level>
|
<es.logger.level>INFO</es.logger.level>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<repositories>
|
|
||||||
<repository>
|
|
||||||
<id>elasticsearch</id>
|
|
||||||
<name>elasticsearch repo</name>
|
|
||||||
<url>http://elasticsearch.googlecode.com/svn/maven</url>
|
|
||||||
</repository>
|
|
||||||
</repositories>
|
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.hamcrest</groupId>
|
<groupId>org.hamcrest</groupId>
|
||||||
|
@ -385,8 +377,9 @@
|
||||||
<report-execution-times file="${basedir}/.local-execution-hints.log"/>
|
<report-execution-times file="${basedir}/.local-execution-hints.log"/>
|
||||||
</listeners>
|
</listeners>
|
||||||
<assertions>
|
<assertions>
|
||||||
<enable />
|
<enable/>
|
||||||
<disable package="${tests.assertion.disabled}"/> <!-- pass org.elasticsearch to run without assertions -->
|
<disable package="${tests.assertion.disabled}"/>
|
||||||
|
<!-- pass org.elasticsearch to run without assertions -->
|
||||||
</assertions>
|
</assertions>
|
||||||
<parallelism>${tests.jvms}</parallelism>
|
<parallelism>${tests.jvms}</parallelism>
|
||||||
<balancers>
|
<balancers>
|
||||||
|
@ -1060,7 +1053,8 @@
|
||||||
<includes>
|
<includes>
|
||||||
<include>org/elasticsearch/test/**/*</include>
|
<include>org/elasticsearch/test/**/*</include>
|
||||||
<include>org/apache/lucene/util/AbstractRandomizedTest.class</include>
|
<include>org/apache/lucene/util/AbstractRandomizedTest.class</include>
|
||||||
<include>org/apache/lucene/util/AbstractRandomizedTest$*.class</include> <!-- inner classes -->
|
<include>org/apache/lucene/util/AbstractRandomizedTest$*.class</include>
|
||||||
|
<!-- inner classes -->
|
||||||
<include>com/carrotsearch/randomizedtesting/StandaloneRandomizedContext.class</include>
|
<include>com/carrotsearch/randomizedtesting/StandaloneRandomizedContext.class</include>
|
||||||
</includes>
|
</includes>
|
||||||
<excludes>
|
<excludes>
|
||||||
|
@ -1087,7 +1081,8 @@
|
||||||
<include>src/test/java/org/elasticsearch/**/*.java</include>
|
<include>src/test/java/org/elasticsearch/**/*.java</include>
|
||||||
</includes>
|
</includes>
|
||||||
<excludes>
|
<excludes>
|
||||||
<exclude>src/main/java/org/elasticsearch/common/inject/**</exclude> <!-- Guice -->
|
<exclude>src/main/java/org/elasticsearch/common/inject/**</exclude>
|
||||||
|
<!-- Guice -->
|
||||||
<exclude>src/main/java/org/elasticsearch/common/geo/GeoHashUtils.java</exclude>
|
<exclude>src/main/java/org/elasticsearch/common/geo/GeoHashUtils.java</exclude>
|
||||||
<exclude>src/main/java/org/elasticsearch/common/lucene/search/XBooleanFilter.java</exclude>
|
<exclude>src/main/java/org/elasticsearch/common/lucene/search/XBooleanFilter.java</exclude>
|
||||||
<exclude>src/main/java/org/elasticsearch/common/lucene/search/XFilteredQuery.java</exclude>
|
<exclude>src/main/java/org/elasticsearch/common/lucene/search/XFilteredQuery.java</exclude>
|
||||||
|
@ -1128,7 +1123,7 @@
|
||||||
</goals>
|
</goals>
|
||||||
</pluginExecutionFilter>
|
</pluginExecutionFilter>
|
||||||
<action>
|
<action>
|
||||||
<execute />
|
<execute/>
|
||||||
</action>
|
</action>
|
||||||
</pluginExecution>
|
</pluginExecution>
|
||||||
<!-- forbidden-apis plugin -->
|
<!-- forbidden-apis plugin -->
|
||||||
|
@ -1143,7 +1138,7 @@
|
||||||
</goals>
|
</goals>
|
||||||
</pluginExecutionFilter>
|
</pluginExecutionFilter>
|
||||||
<action>
|
<action>
|
||||||
<execute />
|
<execute/>
|
||||||
</action>
|
</action>
|
||||||
</pluginExecution>
|
</pluginExecution>
|
||||||
<!-- exec-maven plugin -->
|
<!-- exec-maven plugin -->
|
||||||
|
@ -1157,7 +1152,7 @@
|
||||||
</goals>
|
</goals>
|
||||||
</pluginExecutionFilter>
|
</pluginExecutionFilter>
|
||||||
<action>
|
<action>
|
||||||
<execute />
|
<execute/>
|
||||||
</action>
|
</action>
|
||||||
</pluginExecution>
|
</pluginExecution>
|
||||||
<!-- copy-dependency plugin -->
|
<!-- copy-dependency plugin -->
|
||||||
|
@ -1171,7 +1166,7 @@
|
||||||
</goals>
|
</goals>
|
||||||
</pluginExecutionFilter>
|
</pluginExecutionFilter>
|
||||||
<action>
|
<action>
|
||||||
<execute />
|
<execute/>
|
||||||
</action>
|
</action>
|
||||||
</pluginExecution>
|
</pluginExecution>
|
||||||
</pluginExecutions>
|
</pluginExecutions>
|
||||||
|
|
Loading…
Reference in New Issue