mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-04-22 06:07:55 -04:00
Landing #107018 broke running ESQL unit tests in IntelliJ. It has *something* to do with turning on the stringtemplate plugin in the esql project but I don't really know what. After that PR we'd often get errors about trying to regenerate evaluators twice. I dunno. This fixes it. But I don't really know why. The way this fixes it is by making the `esql` project more like the `copmute` project. It makes sense that that would help - they both have the same code generation configuration. Anyway, the operative change is landing the generated files in the same place as the `compute` project. Thus all of the file moves. Again, I have no idea why this works. It's build black magic and I just shook it until it worked. Most of the credit goes to git-bisect for finding the commit that broke this.
71 lines
1.3 KiB
Text
71 lines
1.3 KiB
Text
|
|
# intellij files
|
|
.idea/
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
build-idea/
|
|
# Eclipse and Intellij put there build files in "out"
|
|
out/
|
|
|
|
# include shared intellij config
|
|
!.idea/eclipseCodeFormatter.xml
|
|
!.idea/externalDependencies.xml
|
|
!.idea/inspectionProfiles/Project_Default.xml
|
|
!.idea/runConfigurations/
|
|
!.idea/scopes/x_pack.xml
|
|
|
|
# These files are generated in the main tree by IntelliJ
|
|
benchmarks/src/main/generated/*
|
|
|
|
# eclipse files
|
|
.project
|
|
.classpath
|
|
.settings
|
|
# We don't use this any more, but we'll keep it around in gitignore for a while so we don't accidentally commit it
|
|
build-eclipse/
|
|
|
|
# netbeans files
|
|
nb-configuration.xml
|
|
nbactions.xml
|
|
|
|
# gradle stuff
|
|
.gradle/
|
|
build/
|
|
|
|
# vscode stuff
|
|
.vscode/
|
|
|
|
# vs stuff
|
|
.vs/
|
|
|
|
# testing stuff
|
|
**/.local*
|
|
.vagrant/
|
|
/logs/
|
|
|
|
# osx stuff
|
|
.DS_Store
|
|
|
|
# default folders in which the create_bwc_index.py expects to find old es versions in
|
|
/backwards
|
|
/dev-tools/backwards
|
|
|
|
# needed in case docs build is run...maybe we can configure doc build to generate files under build?
|
|
html_docs
|
|
|
|
# random old stuff that we should look at the necessity of...
|
|
/tmp/
|
|
eclipse-build
|
|
|
|
# projects using testfixtures
|
|
testfixtures_shared/
|
|
|
|
# These are generated from .ci/jobs.t, .ci/templates.t and .ci/views.t
|
|
.ci/jobs/
|
|
.ci/templates/
|
|
.ci/views/
|
|
|
|
# Generated
|
|
checkstyle_ide.xml
|
|
x-pack/plugin/esql/src/main/generated-src/generated/
|