Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 33 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<packaging>pom</packaging>

<name>SmallRye Fault Tolerance: Parent</name>
<url>http://smallrye.io</url>
<url>https://smallrye.io</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down Expand Up @@ -79,6 +79,7 @@
<version.jacoco-maven-plugin>0.8.12</version.jacoco-maven-plugin>
<version.pitest-maven>1.16.1</version.pitest-maven>
<version.pitest-junit5-plugin>1.2.1</version.pitest-junit5-plugin>
<version.sundrio>0.201.0</version.sundrio>

<sonar.coverage.jacoco.xmlReportPaths>target/site/jacoco/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
</properties>
Expand Down Expand Up @@ -414,7 +415,37 @@
</dependency>
</dependencies>
</dependencyManagement>

<build>
<plugins>
<plugin>
<groupId>io.sundr</groupId>
<artifactId>sundr-maven-plugin</artifactId>
<version>${version.sundrio}</version>
<executions>
<execution>
<goals>
<goal>generate-bom</goal>
</goals>
<configuration>
<boms>
<bom>
<artifactId>smallrye-fault-tolerance-bom</artifactId>
<name>Smallrye Fault Tolerance: BOM</name>
<description>Centralized dependencyManagement for the SmallRye Fault Tolerance Project</description>
<modules>
<excludes>
<exclude>io.smallrye:smallrye-fault-tolerance-tck</exclude>
<exclude>io.smallrye:smallrye-fault-tolerance-testsuite*</exclude>
</excludes>
</modules>
</bom>
</boms>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>not-release</id>
Expand Down
Loading