You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2019/08/25 15:55:52 UTC

[lucene-solr] branch jira/SOLR-13452_gradle_5 updated: SOLR-13452: Add better hack for eclipse plugin metadata intermittent issue (again), and make a move from api to implementation.

This is an automated email from the ASF dual-hosted git repository.

markrmiller pushed a commit to branch jira/SOLR-13452_gradle_5
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/jira/SOLR-13452_gradle_5 by this push:
     new a780d2be SOLR-13452: Add better hack for eclipse plugin metadata intermittent issue (again), and make a move from api to implementation.
a780d2be is described below

commit a780d2be975fbf91d2ce7966fae2da3464a7c623
Author: markrmiller <ma...@apache.org>
AuthorDate: Sun Aug 25 10:55:03 2019 -0500

    SOLR-13452: Add better hack for eclipse plugin metadata intermittent issue (again), and make a move from api to implementation.
---
 buildSrc/build.gradle              | 2 +-
 lucene/misc/build.gradle           | 1 -
 lucene/test-framework/build.gradle | 2 +-
 3 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle
index c6bbf92..b601427 100644
--- a/buildSrc/build.gradle
+++ b/buildSrc/build.gradle
@@ -96,7 +96,7 @@ task buildTest(type: Test) {
   dependsOn project.rootProject.clean
 }
 
-compileJava.doLast {
+clean.doLast {
   // hack for eclipse issue
   file("$buildDir/pluginUnderTestMetadata").mkdirs()
 }
diff --git a/lucene/misc/build.gradle b/lucene/misc/build.gradle
index 1a122f2..386dbf6 100644
--- a/lucene/misc/build.gradle
+++ b/lucene/misc/build.gradle
@@ -23,6 +23,5 @@ dependencies {
   
   implementation project(':lucene:lucene-core')
 
-  testImplementation project(':lucene:lucene-core')
   testImplementation project(':lucene:lucene-test-framework')
 }
\ No newline at end of file
diff --git a/lucene/test-framework/build.gradle b/lucene/test-framework/build.gradle
index e531a7b..db3ffc4 100644
--- a/lucene/test-framework/build.gradle
+++ b/lucene/test-framework/build.gradle
@@ -23,7 +23,7 @@ archivesBaseName = 'lucene-test-framework'
 
 dependencies {
   
-  api project(':lucene:lucene-core')
+  implementation project(':lucene:lucene-core')
   implementation project(':lucene:lucene-codecs')
   
   api ("junit:junit")