Author: jukka
Date: Thu Jul 30 22:56:01 2009
New Revision: 799469
URL: http://svn.apache.org/viewvc?rev=799469&view=rev
Log:
TIKA-263: Core parser classes duplicated in the tika-parser and tika-core jar
files.
Duplication was caused by the Maven bundle plugin automatically embedding
packages matching the Export-Package setting. Dropping those settings causes
the plugin to simply include and export all packages in the source tree of this
component.
Modified:
lucene/tika/trunk/tika-core/pom.xml
lucene/tika/trunk/tika-parsers/pom.xml
Modified: lucene/tika/trunk/tika-core/pom.xml
URL:
http://svn.apache.org/viewvc/lucene/tika/trunk/tika-core/pom.xml?rev=799469&r1=799468&r2=799469&view=diff
==============================================================================
--- lucene/tika/trunk/tika-core/pom.xml (original)
+++ lucene/tika/trunk/tika-core/pom.xml Thu Jul 30 22:56:01 2009
@@ -53,9 +53,6 @@
<extensions>true</extensions>
<configuration>
<instructions>
- <Export-Package>
- org.apache.tika.*;version=${project.version}
- </Export-Package>
<Import-Package>
*
</Import-Package>
Modified: lucene/tika/trunk/tika-parsers/pom.xml
URL:
http://svn.apache.org/viewvc/lucene/tika/trunk/tika-parsers/pom.xml?rev=799469&r1=799468&r2=799469&view=diff
==============================================================================
--- lucene/tika/trunk/tika-parsers/pom.xml (original)
+++ lucene/tika/trunk/tika-parsers/pom.xml Thu Jul 30 22:56:01 2009
@@ -121,9 +121,6 @@
<extensions>true</extensions>
<configuration>
<instructions>
- <Export-Package>
- org.apache.tika.parser.*;version=${project.version}
- </Export-Package>
<Bundle-DocURL>${project.url}</Bundle-DocURL>
</instructions>
</configuration>