forked from apache/lucene
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LUCENE-9438: Eclipse IDE support with gradle build system (apache#1761)
- Loading branch information
Showing
5 changed files
with
130 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
import org.gradle.plugins.ide.eclipse.model.SourceFolder | ||
import org.gradle.plugins.ide.eclipse.model.ClasspathEntry | ||
|
||
configure(rootProject) { | ||
apply plugin: "eclipse" | ||
|
||
def relativize = { other -> rootProject.rootDir.relativePath(other).toString() } | ||
|
||
eclipse { | ||
project { | ||
name = "Apache Lucene Solr ${version}" | ||
} | ||
|
||
classpath { | ||
defaultOutputDir = file('build/eclipse') | ||
|
||
file { | ||
beforeMerged { classpath -> classpath.entries.removeAll { it.kind == "src" } } | ||
|
||
whenMerged { classpath -> | ||
def projects = allprojects.findAll { prj -> | ||
return prj.plugins.hasPlugin(JavaPlugin) && | ||
prj.path != ":solr:solr-ref-guide" | ||
} | ||
|
||
Set<String> sources = [] | ||
Set<File> jars = [] | ||
projects.each { prj -> | ||
prj.sourceSets.each { sourceSet -> | ||
sources += sourceSet.java.srcDirs.findAll { dir -> dir.exists() }.collect { dir -> relativize(dir) } | ||
} | ||
|
||
// This is hacky - we take the resolved compile classpath and just | ||
// include JAR files from there. We should probably make it smarter | ||
// by looking at real dependencies. But then: this Eclipse configuration | ||
// doesn't really separate sources anyway so why bother. | ||
jars += prj.configurations.compileClasspath.resolve() | ||
jars += prj.configurations.testCompileClasspath.resolve() | ||
} | ||
|
||
classpath.entries += sources.sort().collect {name -> new SourceFolder(name, "build/eclipse/" + name) } | ||
classpath.entries += jars.unique().findAll { location -> location.isFile() }.collect { location -> | ||
new LibEntry(location.toString()) | ||
} | ||
} | ||
} | ||
} | ||
|
||
jdt { | ||
sourceCompatibility = rootProject.minJavaVersion | ||
targetCompatibility = rootProject.minJavaVersion | ||
javaRuntimeName = "JavaSE-${rootProject.minJavaVersion}" | ||
} | ||
} | ||
|
||
eclipseJdt { | ||
doLast { | ||
project.sync { | ||
from rootProject.file("dev-tools/eclipse/dot.settings") | ||
into rootProject.file(".settings") | ||
} | ||
} | ||
} | ||
} | ||
|
||
public class LibEntry implements ClasspathEntry { | ||
private String path; | ||
|
||
LibEntry(String path) { | ||
this.path = path; | ||
} | ||
|
||
@Override | ||
String getKind() { | ||
return "lib" | ||
} | ||
|
||
@Override | ||
void appendNode(Node node) { | ||
node.appendNode("classpathentry", Map.of( | ||
"kind", "lib", | ||
"path", path | ||
)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
IntelliJ IDEA | ||
============= | ||
|
||
Importing the project as a gradle project should just run out of the box. | ||
|
||
|
||
Eclipse | ||
======= | ||
|
||
Run the following to set up Eclipse project files: | ||
|
||
./gradlew eclipse | ||
|
||
then import the project into Eclipse with: | ||
|
||
File -> Import... -> Existing Project into Workspace | ||
|
||
Please note that Eclipse does not distinguish between sub-projects | ||
and package sets (main/ test) so pretty much all the sources and dependencies | ||
are available in one large bin. |