You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2016/02/11 15:23:25 UTC

lucene-solr git commit: LUCENE-6997: Maven config: build a spatial module test-jar, and add a test dependency on it to the sandbox module

Repository: lucene-solr
Updated Branches:
  refs/heads/master f6098148a -> 8e0f7ff7b


LUCENE-6997: Maven config: build a spatial module test-jar, and add a test dependency on it to the sandbox module


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/8e0f7ff7
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/8e0f7ff7
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/8e0f7ff7

Branch: refs/heads/master
Commit: 8e0f7ff7bbe202e815a4c3f521871fef7f0e45b4
Parents: f609814
Author: Steve Rowe <sa...@apache.org>
Authored: Thu Feb 11 06:21:18 2016 -0800
Committer: Steve Rowe <sa...@apache.org>
Committed: Thu Feb 11 06:21:18 2016 -0800

----------------------------------------------------------------------
 dev-tools/maven/lucene/sandbox/pom.xml.template |  7 +++++++
 dev-tools/maven/lucene/spatial/pom.xml.template | 13 +++++++++++++
 2 files changed, 20 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/8e0f7ff7/dev-tools/maven/lucene/sandbox/pom.xml.template
----------------------------------------------------------------------
diff --git a/dev-tools/maven/lucene/sandbox/pom.xml.template b/dev-tools/maven/lucene/sandbox/pom.xml.template
index baa8a3c..d357c64 100644
--- a/dev-tools/maven/lucene/sandbox/pom.xml.template
+++ b/dev-tools/maven/lucene/sandbox/pom.xml.template
@@ -48,6 +48,13 @@
       <artifactId>lucene-test-framework</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-spatial</artifactId>
+      <version>${project.version}</version>
+      <type>test-jar</type>
+      <scope>test</scope>
+    </dependency>
 @lucene-sandbox.internal.dependencies@
 @lucene-sandbox.external.dependencies@
 @lucene-sandbox.internal.test.dependencies@

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/8e0f7ff7/dev-tools/maven/lucene/spatial/pom.xml.template
----------------------------------------------------------------------
diff --git a/dev-tools/maven/lucene/spatial/pom.xml.template b/dev-tools/maven/lucene/spatial/pom.xml.template
index 0b1e96a..d4c5cd2 100644
--- a/dev-tools/maven/lucene/spatial/pom.xml.template
+++ b/dev-tools/maven/lucene/spatial/pom.xml.template
@@ -58,5 +58,18 @@
         <directory>${module-path}/src/test-files</directory>
       </testResource>
     </testResources>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>test-jar</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
   </build>
 </project>