summaryrefslogtreecommitdiffstats
path: root/filedistribution
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@yahooinc.com>2023-01-24 13:33:39 +0100
committerBjørn Christian Seime <bjorncs@yahooinc.com>2023-01-24 13:33:39 +0100
commit3b4dc253727be3e5cfbffb6d20c8f4a0730ddd47 (patch)
tree0fd4dad174f38118c16155e5d607529344ae49c8 /filedistribution
parent16b5b25f8c7512c122bb3e7c1cd5c412f8506c48 (diff)
Filedistribution fatjar is unused
Diffstat (limited to 'filedistribution')
-rw-r--r--filedistribution/CMakeLists.txt1
-rw-r--r--filedistribution/pom.xml23
2 files changed, 1 insertions, 23 deletions
diff --git a/filedistribution/CMakeLists.txt b/filedistribution/CMakeLists.txt
index 73c581c0b7f..05c9ec571fb 100644
--- a/filedistribution/CMakeLists.txt
+++ b/filedistribution/CMakeLists.txt
@@ -1,2 +1 @@
# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
-install_jar(filedistribution-jar-with-dependencies.jar)
diff --git a/filedistribution/pom.xml b/filedistribution/pom.xml
index 6485919b14b..a2dd5081c48 100644
--- a/filedistribution/pom.xml
+++ b/filedistribution/pom.xml
@@ -14,7 +14,7 @@
<artifactId>filedistribution</artifactId>
<version>8-SNAPSHOT</version>
- <packaging>container-plugin</packaging>
+ <packaging>jar</packaging>
<name>${project.artifactId}</name>
<dependencies>
@@ -56,30 +56,9 @@
<build>
<plugins>
<plugin>
- <groupId>com.yahoo.vespa</groupId>
- <artifactId>bundle-plugin</artifactId>
- <extensions>true</extensions>
- </plugin>
- <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- <configuration>
- <finalName>${project.artifactId}-jar-with-dependencies</finalName>
- <createDependencyReducedPom>false</createDependencyReducedPom>
- </configuration>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
</plugins>
</build>