[ https://issues.apache.org/jira/browse/LUCENE-9278?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17059205#comment-17059205 ]
Tomoko Uchida commented on LUCENE-9278: --------------------------------------- The whole javadoc folder structure will be changed as bellow by modifications here. For lucene : *Ant build* {code:java} https://lucene.apache.org/core/8_4_1/ ├── analyzers-common ├── analyzers-icu ├── analyzers-kuromoji ├── analyzers-morfologik ├── analyzers-nori ├── analyzers-opennlp ├── analyzers-phonetic ├── analyzers-smartcn ├── analyzers-stempel ├── backward-codecs ├── benchmark ├── changes ├── classification ├── codecs ├── core ├── demo ├── expressions ├── facet ├── grouping ├── highlighter ├── join ├── luke ├── memory ├── misc ├── monitor ├── queries ├── queryparser ├── replicator ├── sandbox ├── spatial-extras ├── spatial3d ├── suggest └── test-framework {code} *Gradle build* {code:java} https://lucene.apache.org/core/9_0_0/ ├── analysis │ ├── common │ ├── icu │ ├── kuromoji │ ├── morfologik │ ├── nori │ ├── opennlp │ ├── phonetic │ ├── smartcn │ └── stempel ├── backward-codecs ├── benchmark ├── classification ├── codecs ├── core ├── demo ├── expressions ├── facet ├── grouping ├── highlighter ├── join ├── luke ├── memory ├── misc ├── monitor ├── queries ├── queryparser ├── replicator ├── sandbox ├── spatial-extras ├── spatial3d ├── suggest └── test-framework {code} For solr: *Ant build* {code:java} https://lucene.apache.org/solr/8_4_1/ ├── solr-analysis-extras ├── solr-analytics ├── solr-cell ├── solr-clustering ├── solr-core ├── solr-dataimporthandler ├── solr-dataimporthandler-extras ├── solr-jaegertracer-configurator ├── solr-langid ├── solr-ltr ├── solr-prometheus-exporter ├── solr-solrj ├── solr-test-framework └── solr-velocity {code} *Gradle build* {code:java} https://lucene.apache.org/solr/9_0_0/ ├── contrib │ ├── analysis-extras │ ├── analytics │ ├── cell # or 'extraction'? │ ├── clustering │ ├── dataimporthandler │ ├── dataimporthandler-extras │ ├── extraction │ ├── jaegertracer-configurator │ ├── langid │ ├── ltr │ ├── prometheus-exporter │ └── velocity ├── core ├── solrj └── test-framework {code} > Make javadoc folder structure follow Gradle project path > -------------------------------------------------------- > > Key: LUCENE-9278 > URL: https://issues.apache.org/jira/browse/LUCENE-9278 > Project: Lucene - Core > Issue Type: Task > Components: general/build > Reporter: Tomoko Uchida > Priority: Major > Time Spent: 0.5h > Remaining Estimate: 0h > > Current javadoc folder structure is derived from Ant project name. e.g.: > [https://lucene.apache.org/core/8_4_1/analyzers-icu/index.html] > [https://lucene.apache.org/solr/8_4_1/solr-solrj/index.html] > For Gradle build, it should also follow gradle project structure (path) > instead of ant one, to keep things simple to manage [1]. Hence, it will look > like this: > [https://lucene.apache.org/core/9_0_0/analysis/icu/index.html] > [https://lucene.apache.org/solr/9_0_0/solr/solrj/index.html] > [1] The change was suggested at the conversation between Dawid Weiss and I on > a github pr: [https://github.com/apache/lucene-solr/pull/1304] -- This message was sent by Atlassian Jira (v8.3.4#803005) --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org