Skip to content

Commit

Permalink
[#464] An internal error occurred during: "Task List Indexer"
Browse files Browse the repository at this point in the history
Add "org.apache.lucene:lucene-backward-codecs"
  • Loading branch information
ruspl-afed committed Mar 5, 2024
1 parent 51ae2c2 commit aa83e9d
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 10 deletions.
38 changes: 28 additions & 10 deletions mylyn.tasks/org.eclipse.mylyn.tasks.index.core/META-INF/MANIFEST.MF
Expand Up @@ -10,14 +10,32 @@ Require-Bundle: org.eclipse.core.runtime;bundle-version="0.0.0",
Bundle-RequiredExecutionEnvironment: JavaSE-17
Bundle-ActivationPolicy: lazy
Export-Package: org.eclipse.mylyn.internal.tasks.index.core;x-internal:=true
Import-Package: org.apache.lucene.analysis;version="9.5.0",
org.apache.lucene.analysis.core;version="9.5.0",
org.apache.lucene.analysis.miscellaneous;version="9.5.0",
org.apache.lucene.analysis.standard;version="9.5.0",
org.apache.lucene.document;version="9.5.0",
org.apache.lucene.index;version="9.5.0",
org.apache.lucene.queryparser.classic;version="9.5.0",
org.apache.lucene.search;version="9.5.0",
org.apache.lucene.store;version="9.5.0",
org.apache.lucene.util;version="9.5.0"
Import-Package: org.apache.lucene.analysis;version="9.10.0",
org.apache.lucene.analysis.core;version="9.10.0",
org.apache.lucene.analysis.miscellaneous;version="9.10.0",
org.apache.lucene.analysis.standard;version="9.10.0",
org.apache.lucene.backward_codecs;version="9.10.0",
org.apache.lucene.backward_codecs.compressing;version="9.10.0",
org.apache.lucene.backward_codecs.lucene40.blocktree;version="9.10.0",
org.apache.lucene.backward_codecs.lucene50;version="9.10.0",
org.apache.lucene.backward_codecs.lucene50.compressing;version="9.10.0",
org.apache.lucene.backward_codecs.lucene60;version="9.10.0",
org.apache.lucene.backward_codecs.lucene70;version="9.10.0",
org.apache.lucene.backward_codecs.lucene80;version="9.10.0",
org.apache.lucene.backward_codecs.lucene84;version="9.10.0",
org.apache.lucene.backward_codecs.lucene86;version="9.10.0",
org.apache.lucene.backward_codecs.lucene87;version="9.10.0",
org.apache.lucene.backward_codecs.lucene90;version="9.10.0",
org.apache.lucene.backward_codecs.lucene91;version="9.10.0",
org.apache.lucene.backward_codecs.lucene92;version="9.10.0",
org.apache.lucene.backward_codecs.lucene94;version="9.10.0",
org.apache.lucene.backward_codecs.lucene95;version="9.10.0",
org.apache.lucene.backward_codecs.packed;version="9.10.0",
org.apache.lucene.backward_codecs.store;version="9.10.0",
org.apache.lucene.document;version="9.10.0",
org.apache.lucene.index;version="9.10.0",
org.apache.lucene.queryparser.classic;version="9.10.0",
org.apache.lucene.search;version="9.10.0",
org.apache.lucene.store;version="9.10.0",
org.apache.lucene.util;version="9.10.0"

1 change: 1 addition & 0 deletions org.eclipse.mylyn-site/category.xml
Expand Up @@ -199,6 +199,7 @@
<bundle id="org.apache.httpcomponents.httpclient"/>
<bundle id="org.apache.httpcomponents.httpcore"/>
<bundle id="org.apache.lucene.analysis-common"/>
<bundle id="org.apache.lucene.backward-codecs"/>
<bundle id="org.apache.lucene.core"/>
<bundle id="org.apache.lucene.queries"/>
<bundle id="org.apache.lucene.queryparser"/>
Expand Down
40 changes: 40 additions & 0 deletions org.eclipse.mylyn-target/org.eclipse.mylyn.target.target
@@ -1,5 +1,20 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde version="3.8"?>
<!--
*******************************************************************************
* Copyright (c) 2022, 2023 Contributors to the Eclipse Foundation
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0/.
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* See git history
*******************************************************************************
-->

<target name="org.eclipse.mylyn.target">
<locations>
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
Expand Down Expand Up @@ -79,5 +94,30 @@
<unit id="org.mockito.mockito-core" version="0.0.0"/>
<unit id="org.objenesis" version="0.0.0"/>
</location>
<location includeDependencyDepth="none" includeDependencyScopes="compile" includeSource="true" label="Apache Lucene" missingManifest="generate" type="Maven">
<dependencies>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-backward-codecs</artifactId>
<version>9.10.0</version>
<type>jar</type>
</dependency>
</dependencies>
<instructions>
<!-- SHA1 09ffcf06f2b8d4a6831c9a3556187ea29ee16b9b -->
<![CDATA[
Bundle-Name: Bundle ${mvnGroupId} : ${mvnArtifactId}
version: ${versionmask;===;${version_cleanup;${mvnVersion}}}
Bundle-SymbolicName: ${mvnGroupId}.${replacestring;${mvnArtifactId};lucene-}
Bundle-Version: ${version}.v20240221-0830
Eclipse-Wrapped-Bundle: ${mvnGroupId}:${mvnArtifactId}:${mvnVersion}
Import-Package: org.apache.lucene.*;version="${range;[==,+);${version}}",\
*
Export-Package: *;version="${version}";-noimport:=true
-noextraheaders: true
-removeheaders: Private-Package
]]>
</instructions>
</location>
</locations>
</target>

0 comments on commit aa83e9d

Please sign in to comment.