summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2022-04-08 13:22:25 +0200
committergjoranv <gv@verizonmedia.com>2022-04-08 13:22:25 +0200
commitb26fda7a547f9e2a9573941caa9edfc3fc0f1882 (patch)
tree33a0e7d7054f4aff9aa6e362a30909c34333dc04
parent13ea650dc641f7aad7923bf3dc6377e1884c9063 (diff)
Remove unnecessary shade-plugin
- The fat jar is not installed or referred to anywhere.
-rw-r--r--document/pom.xml20
-rw-r--r--indexinglanguage/pom.xml22
2 files changed, 0 insertions, 42 deletions
diff --git a/document/pom.xml b/document/pom.xml
index 2b050a4904e..2a284f709db 100644
--- a/document/pom.xml
+++ b/document/pom.xml
@@ -77,26 +77,6 @@
<build>
<plugins>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- <configuration>
- <finalName>${project.artifactId}-jar-with-dependencies</finalName>
- <transformers>
- <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
- <mainClass>com.yahoo.document.foo</mainClass>
- </transformer>
- </transformers>
- </configuration>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
<groupId>com.helger.maven</groupId>
<artifactId>ph-javacc-maven-plugin</artifactId>
</plugin>
diff --git a/indexinglanguage/pom.xml b/indexinglanguage/pom.xml
index f9ee18a4602..112dcee5136 100644
--- a/indexinglanguage/pom.xml
+++ b/indexinglanguage/pom.xml
@@ -60,31 +60,9 @@
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- <configuration>
- <finalName>${project.artifactId}-jar-with-dependencies</finalName>
- </configuration>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
<groupId>com.helger.maven</groupId>
<artifactId>ph-javacc-maven-plugin</artifactId>
</plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-install-plugin</artifactId>
- <configuration>
- <updateReleaseInfo>true</updateReleaseInfo>
- </configuration>
- </plugin>
</plugins>
</build>
</project>