Skip to content

Commit

Permalink
Enable Develocity Predictive Test Selection for Gradle plugin IT
Browse files Browse the repository at this point in the history
This kicks off the start of the experimentation with Develocity PTS
feature.
  • Loading branch information
gsmet committed Mar 25, 2024
1 parent e7f2a1e commit 0fb2435
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
13 changes: 13 additions & 0 deletions build-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,9 @@
<!-- Quarkus Analytics -->
<properties-maven-plugin.version>1.1.0</properties-maven-plugin.version>
<quarkus.analytics.disabled>true</quarkus.analytics.disabled>

<!-- Disable Develocity Predictive Test Selection by default -->
<develocity.pts.enabled>false</develocity.pts.enabled>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -435,6 +438,11 @@
<artifactId>maven-surefire-plugin</artifactId>
<version>${version.surefire.plugin}</version>
<configuration>
<properties>
<predictiveSelection>
<enabled>${develocity.pts.enabled}</enabled>
</predictiveSelection>
</properties>
<!-- combine.self suppresses warnings about java.io.tmpdir being defined twice -->
<systemPropertyVariables combine.self="override">
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
Expand All @@ -455,6 +463,11 @@
<artifactId>maven-failsafe-plugin</artifactId>
<version>${failsafe-plugin.version}</version>
<configuration>
<properties>
<predictiveSelection>
<enabled>${develocity.pts.enabled}</enabled>
</predictiveSelection>
</properties>
<systemPropertyVariables>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
<maven.home>${maven.home}</maven.home>
Expand Down
3 changes: 3 additions & 0 deletions integration-tests/gradle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@

<properties>
<mapstruct.version>1.4.2.Final</mapstruct.version>

<!-- Enable Develocity Predictive Test Selection -->
<develocity.pts.enabled>true</develocity.pts.enabled>
</properties>

<dependencies>
Expand Down

0 comments on commit 0fb2435

Please sign in to comment.