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-26 12:40:46 +0100
commit9db1054cc19da20e98426eaac5cbb848f00bd254 (patch)
treebb3542ae4d0530dedbf79d0c59a5ace8b6faf82f /filedistribution
parente172daaaa5513696889766daa7c3547b77b47d42 (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>