Skip to content

Commit

Permalink
Merge pull request quarkusio#35929 from gsmet/build-cache-no-config
Browse files Browse the repository at this point in the history
Do not store build cache for core extensions having config
  • Loading branch information
gsmet authored Sep 15, 2023
2 parents 8625c06 + 9cb9bc8 commit dc176d0
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 0 deletions.
24 changes: 24 additions & 0 deletions core/deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,30 @@
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.gradle</groupId>
<artifactId>gradle-enterprise-maven-extension</artifactId>
<configuration>
<gradleEnterprise>
<!--
For now, do not store the output of the maven-compiler-plugin as we generate the config doc.
Ideally, we would register them as additional output but their organization is too messy for now.
-->
<plugins combine.children="append">
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<outputs>
<storeEnabled>false</storeEnabled>
</outputs>
</plugin>
</plugins>
</gradleEnterprise>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>

<profiles>
Expand Down
24 changes: 24 additions & 0 deletions core/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,30 @@
</executions>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.gradle</groupId>
<artifactId>gradle-enterprise-maven-extension</artifactId>
<configuration>
<gradleEnterprise>
<!--
For now, do not store the output of the maven-compiler-plugin as we generate the config doc.
Ideally, we would register them as additional output but their organization is too messy for now.
-->
<plugins combine.children="append">
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<outputs>
<storeEnabled>false</storeEnabled>
</outputs>
</plugin>
</plugins>
</gradleEnterprise>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>

</project>
26 changes: 26 additions & 0 deletions test-framework/jacoco/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,30 @@
<module>deployment</module>
<module>runtime</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.gradle</groupId>
<artifactId>gradle-enterprise-maven-extension</artifactId>
<configuration>
<gradleEnterprise>
<!--
For now, do not store the output of the maven-compiler-plugin as we generate the config doc.
Ideally, we would register them as additional output but their organization is too messy for now.
-->
<plugins combine.children="append">
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<outputs>
<storeEnabled>false</storeEnabled>
</outputs>
</plugin>
</plugins>
</gradleEnterprise>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>

0 comments on commit dc176d0

Please sign in to comment.