removing build time dependencies from the runtime (#22501)
Closes #22496
This commit is contained in:
parent
7f10ea3255
commit
080b53fbce
1 changed files with 6 additions and 4 deletions
|
@ -40,13 +40,10 @@
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<!-- Fabric8 -->
|
<!-- Fabric8 -->
|
||||||
<dependency>
|
|
||||||
<groupId>io.fabric8</groupId>
|
|
||||||
<artifactId>crd-generator-api</artifactId>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.fabric8</groupId>
|
<groupId>io.fabric8</groupId>
|
||||||
<artifactId>crd-generator-apt</artifactId>
|
<artifactId>crd-generator-apt</artifactId>
|
||||||
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.fabric8</groupId>
|
<groupId>io.fabric8</groupId>
|
||||||
|
@ -178,6 +175,11 @@
|
||||||
<goals>
|
<goals>
|
||||||
<goal>build</goal>
|
<goal>build</goal>
|
||||||
</goals>
|
</goals>
|
||||||
|
<configuration>
|
||||||
|
<properties>
|
||||||
|
<quarkus.package.filter-optional-dependencies>true</quarkus.package.filter-optional-dependencies>
|
||||||
|
</properties>
|
||||||
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
|
Loading…
Reference in a new issue