Github user scwf commented on the pull request:
https://github.com/apache/spark/pull/3103#issuecomment-61904203
It is very strange.
1
```diff --git a/assembly/pom.xml b/assembly/pom.xml
index 1a9a445..1b85929 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -122,6 +122,7 @@
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
+ <exclude>META-INF/*.MF</exclude>
```
will omit MANIFEST.MF
2
```
diff --git a/assembly/pom.xml b/assembly/pom.xml
index 31a01e4..fd500ea 100644
--- a/assembly/pom.xml
+++ b/assembly/pom.xml
@@ -119,6 +119,7 @@
<artifact>*:*</artifact>
<excludes>
<exclude>org/datanucleus/**</exclude>
+ <exclude>META-INF/*.MF</exclude>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
@@ -148,6 +149,14 @@
</relocation>
</relocations>
<transformers>
+ <transformer
implementation="org.apache.maven.plugins.shade.res
+ <manifestEntries>
+
<Implementation-Vendor>org.apache.spark</Implementation-Ven
+
<Implementation-Title>spark-assembly</Implementation-Title>
+
<Implementation-Version>${project.version}</Implementation-
+
<Implementation-Vendor-Id>org.apache.spark</Implementation-
+ </manifestEntries>
+ </transformer>
```
does not delete the MANIFEST.MF, but produce the MANIFEST.MF of guava's
with ```Implementation-Vendor``` in.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]