aboutsummaryrefslogtreecommitdiffstats
path: root/config-lib
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2020-11-30 10:12:53 +0100
committerJon Bratseth <bratseth@gmail.com>2020-11-30 10:12:53 +0100
commit0683f1227900d32f2d0829e4f418896bdd7ea700 (patch)
treeda2edb44d0c0de3d446cb0c4e5faa92e5c99d282 /config-lib
parent1545396dfa8a085bd6d03b4dd9412d788d230299 (diff)
Make configgen a bundle
Diffstat (limited to 'config-lib')
-rw-r--r--config-lib/pom.xml26
1 files changed, 1 insertions, 25 deletions
diff --git a/config-lib/pom.xml b/config-lib/pom.xml
index bc11f0ab874..90c61725466 100644
--- a/config-lib/pom.xml
+++ b/config-lib/pom.xml
@@ -30,6 +30,7 @@
<groupId>com.yahoo.vespa</groupId>
<artifactId>configgen</artifactId>
<version>${project.version}</version>
+ <scope>provided</scope>
</dependency>
</dependencies>
<build>
@@ -73,31 +74,6 @@
<groupId>com.yahoo.vespa</groupId>
<artifactId>abi-check-plugin</artifactId>
</plugin>
- <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">
- <manifestEntries>
- <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
- <Import-Package>
- com.yahoo.config.codegen<!-- TODO: Remove when the model of config def, which today is InnerCNode in codegen :-(, is moved to config-lib -->
- </Import-Package>
- </manifestEntries>
- </transformer>
- </transformers>
- </configuration>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
</plugins>
</build>
</project>