Skip to content

Commit d2a4259

Browse files
committed
Fix coverage module version on release
1 parent 334c6ab commit d2a4259

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

coverage/pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
32
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
43
<modelVersion>4.0.0</modelVersion>
54

65
<parent>
76
<groupId>io.smallrye.testing</groupId>
87
<artifactId>smallrye-testing-parent</artifactId>
9-
<version>2.3.1-SNAPSHOT</version>
8+
<version>2.3.2-SNAPSHOT</version>
109
</parent>
1110

1211
<artifactId>smallrye-testing-coverage</artifactId>
@@ -20,6 +19,12 @@
2019
<artifactId>smallrye-testing-utilities</artifactId>
2120
<version>${project.version}</version>
2221
</dependency>
22+
23+
<dependency>
24+
<groupId>io.smallrye.testing</groupId>
25+
<artifactId>smallrye-testing-tck-jetty</artifactId>
26+
<version>${project.version}</version>
27+
</dependency>
2328
</dependencies>
2429

2530
<build>

pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,18 @@
6464
</dependencyManagement>
6565

6666
<profiles>
67+
<profile>
68+
<id>unpublished</id>
69+
<activation>
70+
<property>
71+
<name>performRelease</name>
72+
<value>!true</value>
73+
</property>
74+
</activation>
75+
<modules>
76+
<module>coverage</module>
77+
</modules>
78+
</profile>
6779
<profile>
6880
<id>release</id>
6981
<activation>

0 commit comments

Comments
 (0)